Topic: Frequents Errors and Solutions
Frequents Errors and Solutions - Not Finished
If you think of anything else, please PM me - Do not answer to the topic for a suggestion to be added please, thank you.
The following error appear:
A part of Chevereto engine.php is shown on the main page. This problem ocure because since PHP 5.3 <? tags aren't valid.Solution:
Replace in every .php file the <? with <?php
Updated Files of Chevereto NB 1.9.1 for PHP 5.3
The following error appear:
Warning: set_time_limit() [function.set-time-limit]: Cannot set time limit in safe mode in /home/hostyour/public_html/engine.php on line 330Solution:
Open engine.php
Find:
set_time_limit(300);Replace With:
//set_time_limit(300);
The following error appear:
Internal Server Error - During the upload of an imageSolution:
Create a new file named phpinfo.php
Add in phpinfo.php : <?php phpinfo(); ?>
Open in your browser the file phpinfo.php
Search for : upload_max_filesize (Using ctrl + f)
Note the number of MB after it.
Open config.php
Find
$max_mb = '2'; // Max. image size (Mbytes)Replace with Where X is the number noted previously
$max_mb = 'X'; // Max. image size (Mbytes)
Last edited by Danny.Domb (2011-06-08 22:43:00)
