Blog: Extra-ordinary

Magento SEO guideline

Search Engine Optimization (SEO) is a set of actions merchants take to make sure their e-commerce store shows up when customers search for their products through a search engine, whether it be Google or any other search engine. This can make a big difference in your strore’s visibility and sales. Ragan.com, specializing in communications, put together key points that cleary …

Continue Reading

How do I turn off PHP Notices?

Very simple <?php // Turn off all error reporting error_reporting(0); ?> Other interesting options for that function: <?php // Report simple running errors error_reporting(E_ERROR | E_WARNING | E_PARSE); // Reporting E_NOTICE can be good too (to report uninitialized // variables or catch variable name misspellings …) error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE); // Report all errors except E_NOTICE // …

Continue Reading

How do you Specify the Language in an XHTML

Define a primary language with the lang attribute, and then call out the secondary language(s) with lang attributes on elements in the document. Leave out the lang attribute and define it in the various divisions of the document. <div lang=”bn” xml:lang=”bn”> Bangla content </div>

Continue Reading

Forbidden You don’t have permission to access / on this server

I am posting several solution please check below. Please open httpd.conf or in the specific directory block in httpd-vhosts.conf <Directory /> Options FollowSymLinks AllowOverride All Order deny,allow Allow from all </Directory> Replace with <Directory /> #Options FollowSymLinks Options Indexes FollowSymLinks Includes ExecCGI AllowOverride All Order deny,allow Allow from all </Directory> ………………………………………… If you are using a WAMP server then try …

Continue Reading