You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to save the schema with PHP-file, I got "Server response: Internal Server Error".
After adding some debug code in backend/php-file/index.php, I think the problem is get_magic_quotes_gpc() and get_magic_quotes_runtime() were removed as of PHP 8.0.0.
My temporary workaround is commented out two lines.
line 16:
if (get_magic_quotes_gpc() || get_magic_quotes_runtime()) {
line 18:
}
The text was updated successfully, but these errors were encountered:
Hmm, but people might still be running the app on PHP older than 8.0 - in particular, using an installation that has magic quotes enabled. Any suggestions?
When I try to save the schema with PHP-file, I got "Server response: Internal Server Error".
After adding some debug code in backend/php-file/index.php, I think the problem is get_magic_quotes_gpc() and get_magic_quotes_runtime() were removed as of PHP 8.0.0.
My temporary workaround is commented out two lines.
line 16:
if (get_magic_quotes_gpc() || get_magic_quotes_runtime()) {
line 18:
}
The text was updated successfully, but these errors were encountered: