- Markus Breitenbach - http://blog.markus-breitenbach.com -
“Internal Server Error” when converting phpBB v2 to phpBB v3
Posted By Markus On March 25, 2008 2:25 am @ 2:25 am (March 25, 2008) In Fixing Stuff | No Comments
I’m hosting a little phpBB installation and had some problems with the conversion script that comes with phpBB for the conversion of the forum. It seems that the timeout-values for PHP by [1] 1and1 are set too conservatively. I found that adding the following lines to the “install/install_convert.php” file does the trick ([2] credit for this trick) :
@set_time_limit(0);
@ini_set(’memory_limit’, ‘256M’);
@ini_set(’upload_max_filesize’, ‘128M’);
@ini_set(’post_max_size’, ‘256M’);
@ini_set(’max_input_time’, ‘-1′);
@ini_set(’max_execution_time’, ‘-1′);
@ini_set(’expect.timeout’, ‘-1′);
@ini_set(’default_socket_timeout’, ‘-1′);
Having the conversion script reload also seems to help a bit…
Article printed from Markus Breitenbach: http://blog.markus-breitenbach.com
URL to article: http://blog.markus-breitenbach.com/2008/03/25/internal-server-error-when-converting-phpbb-v2-to-phpbb-v3/
URLs in this post:
[1] 1and1: http://1and1.com
[2] credit for this trick: http://www.phpbb.com/community/viewtopic.php?p=3217262#p3217262
Click here to print.