Friday, January 30, 2015

How to install Jmeter in easy steps



Following link will be very useful to install jmeter into your localhost.

http://www.guru99.com/guide-to-install-jmeter.html

Script to clean up the images tables in a Magento installation. Removes references to non-existing images, removes duplicate images, sets correct default image and deletes orphaned images from the filesystem.

I would like to go through following link.

It's very simple & easy. You can save the huge amount of web space of your website.

https://gist.github.com/peterjaap/5547654

Change Magento session timeout

Change Magento session timeout

Magento sets the admin session by default to expire after 3600 seconds (1 hour).
This is how to change the session timeout

System  >> Configuration >> Admin >> Security

Set your desired session timeout
magento-admin-session-lifetime

 

Next we have to make sure the session cookie doesn’t expire.

System >> Configuration >> Web >> Session Cookie Management

Set the Cookie Lifetime to a larger number.

Thank you.

Thursday, January 29, 2015

#1045 - access denied for user 'root'@'localhost' (using password no) xampp

I had this problem after changing the password for the root user in phpMyAdmin. I know nothing about programming but I solved it by doing the following:
  1. Go to file C:\xampp\phpMyAdmin\config.inc.php
    (I guess you would replace "wamp" with the name of your server if you're not using Wamp Server)
  2. Find the line $cfg['Servers'][$i]['password']='' and change this to
    $cfg['Servers'][$i]['password']='NO'
  3. Try opening phpMyAdmin again, and hopefully the message will now read "Access denied for user 'root'@'localhost' (using password: YES)
  4. Now change the password in the above line to 'yourpassword' (whatever you had set it to before)
Hope this helps somebody.


For screen shot &  command prompt you can visit following link.

https://www.ostraining.com/blog/coding/error-1045-phpmyadmin/