无法通过 webgrind 加载 xdebug 配置文件

发布于 2024-10-16 11:23:56 字数 463 浏览 0 评论 0原文

我尝试使用 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 工作正常(我还使用 Netbeans 和 xdebug 测试了 xdebug,它工作正常)。

我的系统:

Windows Vista

XAMPP 1.7.3

Webgrind 1.02

有人有这方面的经验吗?请帮我!

I have tried to use Webgrind for profiling my application but when I click on Update button it show an error:

Could not open D:\Program Files\xampp\tmp/ for reading.
D:\Program Files\xampp\htdocs\webgrind\library\Preprocessor.php, line 49

I check the permission for folder tmp and sure that it's allow full control for everyone.
The folder D:\Program Files\xampp\tmp has file xdebug_profile.6096, mean the xdebug worked correctly (I also tested xdebug by using Netbeans with xdebug and it works normally).

My system:

Windows Vista

XAMPP 1.7.3

Webgrind 1.02

Anyone have experience of this? Please help me!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

装纯掩盖桑 2024-10-23 11:23:56

我想我已经有了,唐。

尝试向您的虚拟主机添加额外的目录指令。
这应该允许服务器访问其目录之外的文件夹。

我已在 Windows 计算机上添加了用作本地主机的虚拟主机。

#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>

Think I have it Thang.

Try adding an extra directory directive to your vhost.
This should allow the server to access folders outside of it's directory.

I've added my vhost I use for my localhost on my windows machine.

#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>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文