unable to open Dashboard page
Added by Ram Mohan over 9 years ago
Hi,
After login with admin unable to view Dashboard page, browser says
Not Found
The requested URL /dashboard was not found on this server.
Apache/2.2.3 (CentOS) Server at 192.168.91.47 Port 443
Below is Response Header
Request URL:https://192.168.91.47/dashboard
Request Method:GET
Status Code:404 Not Found
Please help, after passing through so many hurdles in asterisk, dahdi setup, now this issue has become stumbling block
Regards,
Ram
Replies (1)
RE: unable to open Dashboard page
-
Added by Ram Mohan over 9 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!