ez.no / ezpublish / documentation / configuration / troubleshooting / debug popup window infinite loops
These documentation pages are no longer maintained. Please visit the new documentation site.
If you setup a VHost eZ publish 3.1 using the apache vhost configuration modified from the samples in doc/INSTALL, enable DebugOutput in section [DebugSettings] and specify the popup debug mode, then the "eZ debug" window will infinitely load itself, and you just can see nothing useful.
Solution:
change the line like this:
RewriteRule !\.(gif|css|jpg|png|jar|js)$ /your/ez/path/ezpublish/index.php
to
RewriteRule !\.(gif|css|jpg|png|jar|js|html)$ /index.php
This just means to disable rewrite when clients request a *.html file.
Since eZ do not have any other *.html files, so there should be no potential security leaks.
Comments