Warning: include(Zend/Loader.php): failed to open stream: No such file or directory
Thursday, August 29, 2013
What is SPF ?
Thursday, August 1, 2013
SPF (Sender Policy Framework) is a way to prevent sender address forgery in emails. SPF will not directly stop SPAM (junk email). It will give domain owners a way to define which mail sources are legitimate for their domain and which ones are not.
To enable SPF for your domain, go to the Email Options > SPF Protection section of your Web Hosting Control Panel.
Choose the exact domain name you wish to protect and switch the Status to ON from the drop-down menu next to your domain name.
To enable SPF for your domain, go to the Email Options > SPF Protection section of your Web Hosting Control Panel.
Choose the exact domain name you wish to protect and switch the Status to ON from the drop-down menu next to your domain name.
create virtual keyboard to WordPress blog
Sunday, February 10, 2013
Its easy to create pop-up virtual keyboard in WordPress CMS.
Steps are:
Steps are:
- Download plugins at  pop-up virtual-keyboard
- Upload `virtualkeyboard/` to the '/' of your server
- Open virtualkeyboard.php in editor, change $keyboard_image = 'your/domain'; to your domain where the image is. Save and Close.
- add include('virtualkeyboard.php'); virtualkeyboard_head(); to your header file if applicable, otherwise inside the <head></head> tags will do.
- add virtualkeyboard_footer();before the </body> tag
Now browse, the javascript on the client-side takes care of the rest attaching a keyboard to all text inputs.
Adding Voice mail to Blogger
Saturday, February 9, 2013
Go to https://www.speakpipe.com/
- Sign into your Blogger Dashboard.
- Go to your blog settings.
- Click on "Layout".
- Add SpeakPipe embded code to field (leave the title blank).
- Click "Save".
Screenshots as below:
OpenCart category code
Wednesday, October 24, 2012
<ul>
<?php foreach ($categories as $category) { ?>
<li><a href="<?php echo $category['href']; ?>"><?php echo $category['name']; ?></a>
<?php if ($category['children']) { ?>
<div>
<?php for ($i = 0; $i < count($category['children']);) { ?>
<ul>
<?php $j = $i + ceil(count($category['children']) / $category['column']); ?>
<?php for (; $i < $j; $i++) { ?>
<?php if (isset($category['children'][$i])) { ?>
<li><a href="<?php echo $category['children'][$i]['href']; ?>"><?php echo $category['children'][$i]['name']; ?></a></li>
<?php } ?>
<?php } ?>
</ul>
<?php } ?>
</div>
<?php } ?>
</li>
<?php } ?>
</ul>
Subscribe to:
Posts (Atom)




