Project

General

Profile

Unable to open Dashboard page after login

Added by Ram Mohan over 8 years ago

I am using GoAutoDial 3.3 on CentOS 5.9. When I login with admin user I get redirected to page displaying the error message The requested URL /dashboard was not found on this server And I followed this http://goautodial.org/boards/1/topics/1409 but still the issue remained same. Please help.


Replies (1)

RE: Unable to open Dashboard page after login - Added by Ram Mohan over 8 years ago

I fixed the issue. Issue seems to be with httpd.conf after setting up VirtualHost as below issue got resolved. Trust I am almost the verge of moving out of goautodial :)

<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/html/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory> # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg.
LogLevel warn
</VirtualHost>

Please make sure remove if there is <Directory /var/www/html> element outside VirtualHost as no need in 2 places and also to ensure 1 does not override other.
I also given write permissions to /var/www/html with below command
chmod -R g+rw /var/www/html

Cheers!

    (1-1/1)
    Go to top