Hi
I am getting a 404 Not Found when I try to load listmail, this is what I have done setting it up
MySQL database, example_mail
User, example_admin + password
I then added the user to the database and this is the result
Databases: example_mail
Users in mail
example_admin (Privileges: ALL PRIVILEGES)
Connection Strings
Perl $dbh = DBI->connect("DBI:mysql:example_mail:localhost","example_admin","<PASSWORD HERE>");
PHP $dbh=mysql_connect ("localhost", "example_admin", "<PASSWORD HERE>") or die ('I cannot connect to the database because: ' . mysql_error());
mysql_select_db ("example_mail");
I then went to the config.php file and changed the settings to exactly the same as the database, then uploaded the files to my server.
but when I try to load it in my browser
http://example.com/mail it won't load
if anyone can help me it would be appreciated
Craig Stephens