我曾尝试使用Webgrind来分析我的应用程序但是当我点击“更新”按钮时它显示错误:
Could not open D:\Program Files\xampp\tmp/ for reading.
D:\Program Files\xampp\htdocs\webgrind\library\Preprocessor.php, line 49
我检查文件夹tmp的权限,并确保它允许每个人完全控制。 文件夹D:\ Program Files \ xampp \ tmp有文件xdebug_profile.6096,意味着xdebug正常工作(我还通过使用带有xdebug的Netbeans测试了xdebug并且它正常工作)。
我的系统:
Windows Vista
XAMPP 1.7.3
Webgrind 1.02
任何人都有这方面的经验吗?请帮帮我!
答案 0 :(得分:0)
想想我有Thang。
尝试向vhost添加额外的目录指令。 这应该允许服务器访问它目录之外的文件夹。
我在我的Windows机器上添加了我用于本地主机的vhost。
#template vhost container
NameVirtualHost *:80
<VirtualHost *:80>
DocumentRoot C:\www
ServerName localhost
CustomLog logs/localhost-transfer.log combined
ErrorLog logs/localhost-error.log
# Non configurable settings
DirectoryIndex index.html index.php
<Directory C:\www>
Options Indexes
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<Directory "C:/xampp/tmp">
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>