Ad blocker detected: Our website is made possible by displaying online advertisements to our visitors. Please consider supporting us by disabling your ad blocker on our website.
Hello, I have a problem when login with a fresh install :
when i click on "login", the localhost is asked for the query, but i come to the same page again and again but without any identication error
- the log file is empty of any problem
- the SQL database looks to be fine
#mysqladmin --user=root --password=somepassword create cacti
#mysql cacti < cacti.sql --user=root --password=somepassword
#mysql> GRANT ALL ON cacti.* TO apache@localhost IDENTIFIED BY 'cacti';
Finaly i made the allias to cacti directory in the httpd.conf :
Alias /cacti/ "/usr/local/cacti/"
<Directory "/usr/local/cacti/">
# SSLRequireSSL
Options None
AllowOverride None
Order allow,deny
Allow from all
# Order deny,allow
# Deny from all
# Allow from 127.0.0.1
AuthType None
</Directory>
any Idea ?
PS : I make comment in front of sql command in order to prevent from bug on the forum
Last edited by brochet on Tue May 13, 2008 1:48 am, edited 1 time in total.
Typically this is an issue with PHP session files.
[size=117][i][b]Tony Roman[/b][/i][/size]
[size=84][i]Experience is what causes a person to make new mistakes instead of old ones.[/i][/size]
[size=84][i]There are only 3 way to complete a project: Good, Fast or Cheap, pick two.[/i][/size]
[size=84][i]With age comes wisdom, what you choose to do with it determines whether or not you are wise.[/i][/size]
aka search /etc/php.ini for the directory used for session files. Either make it writable for httpd's user or change it to a directory where httpd's user has write permission
Reinhard