所以我一直在尝试安装Seeddms。我刚刚在我当前的samba服务器上重新刷新了操作系统,并希望添加这个DMS以简化生活。我已经完成了本网站上提到的步骤(Install Guide for old Seeddms)。我知道这是旧版本的Seeddms,并且已经更改了所有与版本相关的代码。
问题是......
修改000-default.conf后,允许访问index.php页面的做法是什么?
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<Directory />
Require all granted
</Directory>
Alias /seeddms “/home/www-data/seeddms50x/seeddms-5.0.8/“
<Directory "/home/www-data/seeddms50x/seeddms-5.0.8/">
DirectoryIndex index.php
AllowOverride All
Order deny,allow
Deny from all
Allow from all
</Directory>
</VirtualHost>
位于 - &gt; #&34;在/ etc / apache2的/启用的站点 - /&#34;
我尝试使用
的网址访问安装页面http://steve/seeddms/install (**史蒂夫是samba服务器的名称)
然而,没有运气。
任何想法?