对于xampp服务器,我创建了一个符号链接。
现在,当运行服务器时,我得到一个错误:
Access forbidden!
You don't have permission to access the requested object. It is either read-protected or not readable by the server.
If you think this is a server error, please contact the webmaster.
Error 403
localhost
Apache/2.4.7 (Unix) OpenSSL/1
我正在尝试将一堆重写规则从.htaccess文件移动到apache配置文件中,我没有得到任何错误,并将以下内容放在站点配置文件的VirtualHost部分中:
<Directory /var/www/da/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
RewriteEngine On
RewriteBase /
Rewrite
我的主机上有一个目录,其中包含一个虚拟主机。这个目录与虚拟机共享,我必须在虚拟机上运行一些Python脚本(包含在同一个目录中)。
当我在主机上的virtualenv中运行Python脚本时,脚本可以在没有问题的情况下查看/使用venv包。但是,当我试图在虚拟机中使用相同的venv激活时,Python看不到包。
解决方法是在来宾机器中创建一个新的虚拟主机,并使用主机的requirements.txt填充包。另一个“但是”:我不能在客户机器上安装虚拟主机。我运行pip install virtualenv,它等待了将近一分钟,然后得到以下内容:
Cannot fetch index base U
当我为我的manage.py项目执行python命令时,我得到以下错误:
System check identified no issues (0 silenced).
June 14, 2015 - 20:43:03
Django version 1.8.2, using settings 'django_test.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.
Traceback (most recent call last):