No, this is an Apache issue, but I'm trying to explain:
Your Apache Server has to reach the pandora_console directory. As you're using Ubuntu, go to /etc/apache2/sites-available directory and create a new file pandora_console, containing, for example, and following that you have it at /usr/share/pandora-console/ something like this:
(You can also add logging if you put in a VirtualHost:
ErrorLog /var/log/apache2/pandora_console_error.log
LogLevel warn
CustomLog /var/log/apache2/pandora_console_access.log combined
)
Then, go to /etc/apache2/sites_enabled and link pandora_console:
[email protected]:/etc/apache2/sites-enabled# ln -s ../sites-available/pandora_console pandora_console
Then you'll see the link:
[email protected]:/etc/apache2/sites-enabled# ls -la
total 7
drwxr-xr-x 2 root root 4096 2009-05-21 19:34 .
drwxr-xr-x 7 root root 4096 2009-04-30 11:57 ..
lrwxrwxrwx 1 root root 24 2008-11-06 19:13 alias -> ../sites-available/alias
lrwxrwxrwx 1 root root 26 2009-02-02 17:15 charles -> ../sites-available/charles
lrwxrwxrwx 1 root root 27 2009-02-24 13:26 integria -> ../sites-available/integria
lrwxrwxrwx 1 root root 26 2008-11-06 19:13 pandora_console -> ../sites-available/pandora_console
lrwxrwxrwx 1 root root 29 2008-11-06 19:13 phpmyadmin -> ../sites-available/phpmyadmin
lrwxrwxrwx 1 root root 30 2008-11-06 19:14 sqldesigner -> ../sites-available/sqldesigner
lrwxrwxrwx 1 root root 23 2008-11-06 19:14 wiki -> ../sites-available/wiki
lrwxrwxrwx 1 root root 24 2008-11-06 19:14 yixue -> ../sites-available/yixue
Next, restart apache and access Pandora Console using http://localhost/pandora_console
Hope it helps.
Raúl
Your Apache Server has to reach the pandora_console directory. As you're using Ubuntu, go to /etc/apache2/sites-available directory and create a new file pandora_console, containing, for example, and following that you have it at /usr/share/pandora-console/ something like this:
Code:
Alias /pandora_console "/usr/share/pandora_console"
<Directory "/usr/share/pandora_console">
Options MultiViews FollowSymLinks
AllowOverride None
Order allow,deny
allow from all
</Directory>
(You can also add logging if you put in a VirtualHost:
ErrorLog /var/log/apache2/pandora_console_error.log
LogLevel warn
CustomLog /var/log/apache2/pandora_console_access.log combined
)
Then, go to /etc/apache2/sites_enabled and link pandora_console:
[email protected]:/etc/apache2/sites-enabled# ln -s ../sites-available/pandora_console pandora_console
Then you'll see the link:
[email protected]:/etc/apache2/sites-enabled# ls -la
total 7
drwxr-xr-x 2 root root 4096 2009-05-21 19:34 .
drwxr-xr-x 7 root root 4096 2009-04-30 11:57 ..
lrwxrwxrwx 1 root root 24 2008-11-06 19:13 alias -> ../sites-available/alias
lrwxrwxrwx 1 root root 26 2009-02-02 17:15 charles -> ../sites-available/charles
lrwxrwxrwx 1 root root 27 2009-02-24 13:26 integria -> ../sites-available/integria
lrwxrwxrwx 1 root root 26 2008-11-06 19:13 pandora_console -> ../sites-available/pandora_console
lrwxrwxrwx 1 root root 29 2008-11-06 19:13 phpmyadmin -> ../sites-available/phpmyadmin
lrwxrwxrwx 1 root root 30 2008-11-06 19:14 sqldesigner -> ../sites-available/sqldesigner
lrwxrwxrwx 1 root root 23 2008-11-06 19:14 wiki -> ../sites-available/wiki
lrwxrwxrwx 1 root root 24 2008-11-06 19:14 yixue -> ../sites-available/yixue
Next, restart apache and access Pandora Console using http://localhost/pandora_console
Hope it helps.
Raúl