1

PHP & MySql 配置是:

**MySql**   
Server: Localhost via UNIX socket
Server version: 5.1.63-0ubuntu0.11.10.1
Protocol version: 10
User: root@localhost
MySQL charset: UTF-8 Unicode (utf8)

**Web Server** 
Apache/2.2.20 (Ubuntu)
MySQL client version: 5.1.63
PHP extension: mysqli Documentation

我正在使用 Ubuntu 11.10 当我尝试安装 Magento 1.7.0.0 时,我收到以下错误消息:

The requested URL /magento17/index.php/install/ was not found on this server.

有人可以建议我解决这个问题吗?

4

1 回答 1

0

如果你是从 root 终端安装,你可以对包使用sandard debian 命令。您可以尝试查找未正确安装的原因。首先尝试找到正确安装的依赖项:

dpkg -s magento17 | grep Depends:

当您看到结果时,请尝试查找是否所有依赖项都安装在正确的版本中,如下例所示:

dpkg -l  apache2.2-comm

如果它是正确的,你会看到这样的答案:

ii  apache2.2-comm 2.2.16-6+squee Apache HTTP Server common files

如果安装正确,那么您应该尝试检查问题是否出在使用正确的相对链接上!

尝试使用

magento17/index.php/install/
于 2012-06-14T10:01:33.700 回答