Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can not install opendb, HTTP Error 500 #100

Open
tschinkes opened this issue Jun 16, 2020 · 3 comments
Open

Can not install opendb, HTTP Error 500 #100

tschinkes opened this issue Jun 16, 2020 · 3 comments

Comments

@tschinkes
Copy link

Hi,
i get a HTTP 500 Error inside the installation. After enter the mysql data, an continue the install script, i see only Error HTTP 500. Nothing is written into the selected DB and any access after this i see only 500 Error.
My system: lighttpd with mariadb and php 7.3.

@pellcorp
Copy link
Owner

It's been ages since I have even looked at this code. I suggest you check the error log, not sure where it's located for lighttpd, as I've never tested on that http server

@NicFord1
Copy link

The issue is with the ini_set() call in './include/begin.inc.php' -- setting the session handler is no longer allowed.

old code (line 111):
if (strtolower(ini_get('session.save_handler')) == 'user' || ini_set('session.save_handler', 'user')) {

new code:
if (strtolower(ini_get('session.save_handler')) == 'user') {

begin.inc.php.zip

See php bug report

@pellcorp
Copy link
Owner

Happy to take a merge request to fix this but I don't have time to work on it and test it myself

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants