Phpmyadmin不工作

我最近使用安装了phpmyadmin到ubuntu服务器10.04上

sudo apt-get install phpmyadmin 

安装很顺利,一切正常,包括phpmyadmin。 然后我执行了服务器的重启,现在apache2启动但是当我导航到

 http://192.168.1.72/phpmyadmin/ 

我收到403错误。 我在/etc/apahe2/apache2.conf文件中包含了/etc/phpmyadmin/apache.conf文件

 /etc/phpmyadmin/apache.conf # phpMyAdmin default Apache configuration Alias /phpmyadmin /usr/share/phpmyadmin  Options FollowSymLinks DirectoryIndex index.php  AddType application/x-httpd-php .php php_flag magic_quotes_gpc Off php_flag track_vars On php_flag register_globals Off php_value include_path .   # Authorize for setup   AuthType Basic AuthName "phpMyAdmin Setup" AuthUserFile /etc/phpmyadmin/htpasswd.setup  Require valid-user  #Disallow web access to directories that don't need it  Order Deny,Allow Deny from All   Order Deny,Allow Deny from All  

自phpmyadmin安装以来唯一的变化就是安装了timetrex。 反正有没有手动启动phpmyadmin或者它应该已经在apache启动后工作?

我已经能够解决我的问题了。 我遗漏了

 order deny,allow #deny from all allow from all 

来自/etc/phpmyadmin/apache.conf

我从一个超级用户问题找到了解决这个问题的方法:

  • 我该如何启动phpMyAdmin?