Magento SEO guideline
-
zendnwar
-
May 27, 2014
-
Magento
-
0 Comments
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 can I refresh a page with jQuery/Javascript?
-
zendnwar
-
May 21, 2014
-
Jquery, Others
-
0 Comments
It is very simple Javascript : <script type=”text/javascript”> setTimeout(function(){ window.location.reload(); }, 5000); </script> Jquery : $(‘#id’).click(function() { location.reload(); });
Continue Reading
How do I turn off PHP Notices?
-
zendnwar
-
May 15, 2014
-
PHP Basic
-
0 Comments
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 to change port? – Skype
-
zendnwar
-
May 15, 2014
-
Others
-
0 Comments
open skype click tools and go to options click advanced option from left side click connection unchecked (Use port 80 and 443 as alternatives for incoming connection)
Continue Reading
5 Most Common Magento Coding Issues to Optimize Your Site for Performance
-
zendnwar
-
April 7, 2014
-
Magento
-
0 Comments
Calculating the size of an array on each iteration of a loop SQL queries inside a loop Loading the same model multiple times Redundant data set utilization Inefficient memory utilization
Continue Reading
How do you Specify the Language in an XHTML
-
zendnwar
-
March 29, 2014
-
HTML
-
0 Comments
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
How to automatically forward a page in HTML
-
zendnwar
-
March 29, 2014
-
HTML
-
178 Comments
<html> <head> <title>How to automatically forward a page in HTML</title> <meta http-equiv=”refresh” content=”0; url=http://www.example.com”> </head> <body> <h1>How to automatically forward a page in HTML</h1> </body> </html>
Continue Reading
TypeError: f.easing[i.animatedProperties[this.prop]] is not a function
-
zendnwar
-
March 21, 2014
-
Word Press
-
235 Comments
this error occurs when a newer version of jquery and jquery.easing is used with an older version of the call to animate.easing. Do a search in your javascript of your theme for the text “easeout” or “easein” or “easeinout”. I solve this problem different way. I got this problem when I try to active animation existing slider site. I find …
Continue Reading
How to add class in submit button cakephp 2.9 ?
-
zendnwar
-
March 11, 2014
-
Cakephp
-
1 Comment
Please check below code. <?php echo $this->Form->submit(__(‘Submit’,true), array(‘class’=>’your-class’)); echo $this->Form->end(); ?>
Continue Reading
Forbidden You don’t have permission to access / on this server
-
zendnwar
-
March 6, 2014
-
Others
-
0 Comments
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