Blog: Extra-ordinary

What is .htaccess?

Hypertext Access, commonly shortened to htaccess. .htaccess is a configuration file for use on web servers running the Apache Web Server software. When a .htaccess file is placed in a directory which is in turn ‘loaded via the Apache Web Server’, then the .htaccess file is detected and executed by the Apache Web Server software. These .htaccess files can be …

Continue Reading

how to increase page rank? Tips by Bangladeshi SEO expert.

 Blog Commenting.  Forum Commenting.  Directory Listing.  Social Media Profile.  Guest Blogging.  Use of NoFollow tag.  Internal linking structure.  Spammy Neighborhood.  Acquiring Special Backlinks.  Say No to Spammy Activities.  Use NoFollow attribute sparingly.  Make your comment section NoFollow.  Submitting Website Different Directories.  No spammy outbound links.  Don’t use Porn words.  Don’t make multiple sub-domains.  Don’t involve in link-scheme.  Don’t watch Porn …

Continue Reading

34 BCS Preliminary Result of psc

collected from http://www.bpsc.gov.bd/upload/docs/bcs_result_0807163932.pdf 000094 000128 000129 000131 000149 000159 000177 000184 000201 000204 000218 000226 000255 000288 000352 000367 000373 000384 000399 000401 000413 000456 000466 000475 000482 000496 000536 000555 000561 000563 000580 000604 000610 000619 000644  000648 000660 000661 000672 000679 000681 000683 000689 000712 000759 000777 000799 000800 000815 000824 000827 000861 000898 000905 000928 000929 000930 …

Continue Reading

Magento reset Admin Password

It is very simple   UPDATE admin_user SET password=CONCAT(MD5(‘ShAfInAnWaR’), ‘:sG’) WHERE username=’Adminusername’;   Note: You have to change newpass in the MD5(‘ShAfInAnWaR’) with your new password, and change *Adminusername* to your Magento admin username.

Continue Reading

Magento Enterprise v. Community

What is the Magento Community Edition? Magento was born as open source software. The reason this edition is called “Community” has its basis in these origins. This means that you, and anyone around the world, are free to download Magento, and make any modifications you may need to suit your requirements. Magento has had tremendous growth and with this growth …

Continue Reading

WordPress Developer in Bangladesh

Why WordPress? Create SEO friendly blog with WordPress WordPress is known as the best SEO friendly CMS WordPress is extremely easy to use, even for the most novice user Make your blog social bookmark enabled with WordPress Ability to design your blog using your photos and videos What I do: Creating the wordpress themes. Converting a psd into a wordpress …

Continue Reading

SEO tips and tricks.

SEO  tips and tricks from SEO specialist of Bangladesh. 1. Write Unique content 2. Create  Unique keyword phrase 3. New and Fresh content 4. Optimize for keywords 5. keyword phrase in Title tag 6. keywords in your URL 7. Unique Content 8. Make your website accessible to search engine spiders 9. Buy related domain name 10. keyword Density 11. Include …

Continue Reading

How to rename list of images in php

<?php $directory = “folder_name/”;       // Folder name of  images //get all image files with a .jpg extension. $images = glob($directory . “*.jpg”); $i= 1; foreach ($images as $fileinfo) { $fromImg = “D:/xampp/htdocs/imagesize/”.$fileinfo; // Read  all images of you directroy $imageName = “gallery”.$i.”.jpg”;  // Rename your own way $toImg = “D:/xampp/htdocs/imagesize/rename/”.$imageName; //Rename images location copy($fromImg,$toImg); $i++; } ?> Hope it will …

Continue Reading