Errror : Warning: Cannot modify header information – headers already sent by (output started at /home/username/public_html/includes/formvalidator.php:573) in /home/username/public_html/admin/insert_product.php on line 40 Solution : Then you need to add the following code at the top of file (/home/username/public_html/includes/formvalidator.php). <? ob_start(); ?> then at the bottom of the page place this line of code: <? ob_flush(); ?> [ Read More ]
Error : Warning: session_save_path() [function.session-save-path]: SAFE MODE Restriction in effect. Solution : If osCommerce shows the above error on the page then you need to change the ” Session Directory” path in database by using phpmyadmin. 1) Login to cpanel then click on the phpmyadmin 2) choose your database and search “/tmp” in database then [ Read More ]
Client denied by server configuration : Error : tail -f /usr/local/apache/logs/error_log | grep username [Sun Dec 07 14:04:38 2008] [error] [client 203.193.165.98] client denied by server configuration: /home/username/public_html/catalog/admin/index.php Solution: If you get above error then you need to check .htaccess file under respective directory(here catalog/admin) and there you need to comment the rule “Deny from [ Read More ]
Error: Thumbnail not created for EXIF jpeg file by using Imagemagick Solution : The problem due the Imagemagick version. You need to upgrade your Imagemagick version. You can easily upgrade your Imagemagick version by using yum command. root# yum install glib2 root# yum install libpng root# yum install libjpeg root# yum install libtiff root# yum [ Read More ]
Error : Maximum execution time of 30 seconds exceeded in Magento. Solution: You need to increase your maximum execution time for php scripts on your server. You can edit your php.ini file to increase this value max_execution_time = 600 or You can try adding the following line at the start of your file on which [ Read More ]
If you are using gzip compression in your webpage coding and you get following error Errror : Warning: ob_start(): output handler ‘ob_gzhandler’ conflicts with ‘zlib output compression’ in /home/username/public_html/…/… on line … Solution: You have to add following code on non-suexec server in your .htaccess file. php_value zlib.output_compression off or on suexec server create php.ini [ Read More ]
If you are getting following error while sending emails from squirrelmail. Error: Message not sent. Server replied: Connection timed out 110 Can’t open SMTP stream. Solution : If above case if you are having shell access then login to your server with root user, then edit config file and do the changes as given below. [ Read More ]
Error: Browser shows [an error occurred while processing this directive] ” and server logs shows the error ” unable to include “http://domain name /inc/listbox.php” in parsed file /home/username/public_html/index.shtml Solution : You need to check your coding if you have used ” <!–#include virtual=”http://domain name /inc/listbox.php” –> ” in index.shtml so the proper SSI include should [ Read More ]