while updating from 3.0.4 to 3.0.5 I got the following error:
- Code: Select all
[phpBB Debug] PHP Notice: in file /install/install_update.php5 on line 1568: include(./../install/update/index.php) [function.include]: failed to open stream: No such file or directory
[phpBB Debug] PHP Notice: in file /install/install_update.php5 on line 1568: include() [function.include]: Failed opening './../install/update/index.php' for inclusion (include_path='.:/usr/lib/php5')
It's caused by lines 1554 and 1568 @ install/install_update.php, because I'm not using the standard extension ".php":
- Code: Select all
include($phpbb_root_path . 'install/update/index.php');
should be
- Code: Select all
include($phpbb_root_path . 'install/update/index.' . $phpEx);
to prevent this error.