Installing 3.2.5: "Error 505 http version is not supported"

Hi, 3.0.12 is running so far.
Now I made a complete new installation of 3.2.5 with new database. After uploading the files and editing the config I tried to start the installation routine at /admin. But I got “505 http version is not supported”. I never had this.
3.0.12 is running without (major) problems.
Who can help?
HansT.

hmmm, may be I did not upload the files completely. I will delete everythink and upload everything again…

I have still the same problem
3.0.12 is running without problems

@HansT What is the URL to your new phplist installation?

http://www.tolzin.de/newsletter2

@HansT I am also getting server error trying to access your original phplist http://www.tolzin.de/newsletter/?p=subscribe&id=1

Possibly there is some clash between the two directories but not sure what. Also check any .htaccess files to see whether there is any odd redirection happening or any other restrictions.

Update - that url is now ok, ignore that comment.

htaccess file is not changed

My Website is running with PHP Version 5.4.45. Could this cause the problem?

@HansT By itself the php version is not likely to be the problem.
Now your new site is giving a different error “Service Unavailable”.

There should be more information in the web server logs. If you don’t have access to them then you will need to raise the problem with the hosting company.

I called them already. They could not help. I delete the complete installation and start again from zero.

complete new installation again.
html files are fine.
php files are not.
I updated the php version for this domain to 5.5. but I cannot call the phpinfo file in /newsletter2.
using old config file does not help
using old htaccess file does not help

Error message in the moment: Service Unavailable The server encountered an internal error or misconfiguration and was unable to complete
your request.

its not a phplist problem. after renaming php files to php5 it seems working

Problem with 3.2.5 and 3.2.4 as well.
New Installation of 3.0.12: no problem…

Same here. Performed a fresh phplist 3.2.5 installation and got welcomed with:

[quote]505 http error - HTTP Version not supported
The server encountered an internal error or
misconfiguration and was unable to complete
your request.
Please contact the server administrator,
and inform them of the time the error occurred,
and anything you might have done that may have
caused the error.
More information about this error may be available
in the server error log.
Additionally, a 500 Internal Server Error
error was encountered while trying to use an ErrorDocument to handle the request.
[/quote]

Our webpage runs on a 1&1 managed server. The error occurs with and without adding:

AddType x-mapp-php5.4 .php
AddHandler x-mapp-php5.4 .php

to each .htaccess.

Any help would be very much appreciated.

@Knupps The problem is caused by phplist now always using mysqli instead of mysql. 1&1 require a slightly different database connection for mysqli.

The error message is misleading, that is another problem with phplist.

You need to make some changes to your config.php file
If your database_host is this

$database_host = "localhost:/tmp/mysql5.sock";

then change to

$database_host = "localhost";

also add this line, probably best near the other database lines

ini_set("mysqli.default_socket", "/tmp/mysql5.sock");
1 Like

You nailed it! Thank you so much.