aero Posted February 23, 2016 Share Posted February 23, 2016 Обновили версию PHP до 5.4 и теперь при входе на форум появляется такая ошибка: Fatal error: Uncaught Error: Call to undefined function set_magic_quotes_runtime() in /initdata.php:390Помогите пожалуйста ее исправить. Link to comment Share on other sites More sharing options...
siv1987 Posted February 23, 2016 Share Posted February 23, 2016 Функция set_magic_quotes_runtime начиная с версии 5.3 считается устаревшей, а с 5.4 удалена совсем. Открыть /initdata.php Найти @set_magic_quotes_runtime(0); if ( ! defined( 'IPS_MAGIC_QUOTES' ) ) { define( 'IPS_MAGIC_QUOTES', @get_magic_quotes_gpc() ); } Заменить на if( version_compare( phpversion(), '5.4.0', '<') ) { @set_magic_quotes_runtime(0); if ( ! defined( 'IPS_MAGIC_QUOTES' ) ) { define( 'IPS_MAGIC_QUOTES', @get_magic_quotes_gpc() ); } } else { if ( ! defined( 'IPS_MAGIC_QUOTES' ) ) { define( 'IPS_MAGIC_QUOTES', false ); } } 2 Link to comment Share on other sites More sharing options...
kgb Posted February 23, 2016 Share Posted February 23, 2016 Попробуй подменить inidata.php на этотinitdata.zip 1 Link to comment Share on other sites More sharing options...
siv1987 Posted February 23, 2016 Share Posted February 23, 2016 Попробуй подменить inidata.php на этотТам используется тот же самый фикс. Видимо сделали его в версии 3.4.9. Link to comment Share on other sites More sharing options...
aero Posted February 23, 2016 Author Share Posted February 23, 2016 Да, действительно, у меня 3.4.6. Выполнил правку предложенную siv1987 и форум заработал. Огромное спасибо за оперативный ответ! 1 Link to comment Share on other sites More sharing options...
clickrav Posted April 6, 2019 Share Posted April 6, 2019 kgb спасибо подошло Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now