为什么我看不到任何 firephp 输出?

发布于 2024-11-27 17:10:39 字数 559 浏览 2 评论 0原文

我正在尝试让 firephp 工作。从上周开始就可以了,不知道什么时候 到底是它停止工作了还是我改变了什么。

我现在正在尝试做一个简单的 firephp hello world。

<?php
require_once('FirePHPCore/FirePHP.class.php');
ob_start();
$firephp = FirePHP::getInstance(true);
$firephp->log('Hello', 'World');

require_once('FirePHPCore/fb.php');
$var='test';
fb($var);
FB::send($var);

ob_end_flush();
?>

Firebug 控制台窗口中没有结果,也没有找到错误消息。

FireFox 5.0

FireBug 1.8.0

PHP 5.3.1

Firebug 控制台和网络面板已启用。 FirePHP 已启用。

在 get 请求下的网络面板中,我没有看到任何 X-wf- 标头。

I am trying to get firephp to work. It was working as of last week and I don't know when
exactly it stopped working or what I changed.

I am now trying to do a simple firephp hello world.

<?php
require_once('FirePHPCore/FirePHP.class.php');
ob_start();
$firephp = FirePHP::getInstance(true);
$firephp->log('Hello', 'World');

require_once('FirePHPCore/fb.php');
$var='test';
fb($var);
FB::send($var);

ob_end_flush();
?>

There is no result in the firebug console window and no error messages I can find.

FireFox 5.0

FireBug 1.8.0

PHP 5.3.1

Firebug console and net panels are enabled. FirePHP is enabled.

In the net panel under the get request, I do not see any X-wf- headers.

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

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

发布评论

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

评论(6

风情万种。 2024-12-04 17:10:39

Firebug 必须启用网络面板。

编辑:只需按 f12,单击“网络”,如果显示“启用”,请单击“启用”:)

Firebug has to have the Net panel enabled.

EDIT: Just press f12, click on the Net and if it says enable, click on enable :)

自演自醉 2024-12-04 17:10:39

这很荒谬,但我只是浪费了 30 分钟,确保你的输出设置为“全部”而不是“错误”或 firePHP 控制台中的类似内容。

This one is ridiculous but I just wasted 30 mins, make sure you have your output set on 'All' and not 'Errors' or something like that in the firePHP console.

贱人配狗天长地久 2024-12-04 17:10:39

FirePHP 扩展现在可以再次与 Firebug 1.8 一起使用: http://www.firephp.org/HQ/FinalRelease .htm

发生情况的解释:http://www.christophdorn.com/Blog/ 2011/08/03/firephp-and-firebug-1-8/

The FirePHP Extension now works again with Firebug 1.8: http://www.firephp.org/HQ/FinalRelease.htm

Explanation of what happened: http://www.christophdorn.com/Blog/2011/08/03/firephp-and-firebug-1-8/

好菇凉咱不稀罕他 2024-12-04 17:10:39

使用最新的 Firebug 版本 1.8 和 Firefox 5 似乎存在一个已知问题:
http://groups.google.com/group/firephp -dev/browse_thread/thread/aa8ca7877f4f2d82?pli=1

降级到版本 1.7.3 解决了我的问题。
http://getfirebug.com/releases/firebug/1.7/firebug-1.7 .3.xpi

It seems there is a knowned issue using the latest Firebug version 1.8 and Firefox 5:
http://groups.google.com/group/firephp-dev/browse_thread/thread/aa8ca7877f4f2d82?pli=1

Downgrading to version 1.7.3 solved the problem for me.
http://getfirebug.com/releases/firebug/1.7/firebug-1.7.3.xpi

情丝乱 2024-12-04 17:10:39

您需要调用 ob_end_flush() 才能将任何输出发送到浏览器。

You need to call ob_end_flush() for any output to get sent to the browser.

感性 2024-12-04 17:10:39

由于我是由同一问题引发的谷歌结果引导到这里的,我想为后代添加一些观点。

在任何新的 Windows 操作系统(Windwos 7 及更高版本)上的本地环境中进行测试时,您应该检查您的文件是否被阻止

没错:在我的例子中, require_once 没有抛出任何致命错误,如果找不到文件,它应该抛出任何致命错误 - 所以……。一定是文件有问题。

在 Linux 上,您需要检查权限,在 Windows 上,您需要检查文件属性并查看文件是否被阻止。

如果是,并且您具有管理员权限,您可以立即解锁它。

As I was led here by a google result motivated by the same problem I would like to add some perspective for posterity.

While testing in local environment on any of the new Windows OSs (Windwos 7 and above) you should check if your file is blocked .

That's right: in my case require_once didnt throw any fatal errors which it should if it couldnt find the file - so sth. had to be wrong with the file.

On Linux you would check permissions, on windows you need to check the file properties and see if the file is being blocked.

If it is and you have admin privileges, you can unblock it then and there.

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