Hi! On júl. 14, 19:50, Ian Bicking <[email protected]> wrote: > On Fri, Jul 10, 2009 at 6:12 AM, durumdara <[email protected]> wrote: > > ProxyPassMatch "/(img|error|media|css)/" ! > > ProxyPass /http://127.0.0.1:10020/retry=120 timeout=600 > > ProxyPassReverse /http://127.0.0.1:10020/ > > Oh yeah, that first line is probably what causes the problem. > > -- > Ian Bicking | http://blog.ianbicking.org |http://topplabs.org/civichacker
Hi! I also found the solution and the source of the problem. This caused by: ProxyPassMatch "/(img|error|media|css)/" ! The ^ is missing from here. ProxyPassMatch "^/(img|error|media|css)/" ! This caused that gui not found the subdirectories under /_debug. This is a Pylons folder. After I inserted this sign, everything is working well! Logs are: Mod_Rewrite: "GET /ajanlat/index? HTTP/1.1" 200 8692 "GET /ajanlat/index?x=1 HTTP/1.1" 500 57722 "GET /_debug/media/pylons/style/itraceback.css HTTP/1.1" 200 2855 "GET /_debug/media/traceback.css HTTP/1.1" 200 9917 "GET /_debug/media/jquery-1.2.3.pack.js HTTP/1.1" 200 56558 "GET /_debug/media/debug.js HTTP/1.1" 200 10888 "GET /_debug/media/plus.jpg HTTP/1.1" 200 361 "GET /_debug/media/pylons/javascripts/traceback.js HTTP/1.1" 200 5828 "GET /_debug/media/pylons/img/pylons-powered-02.png HTTP/1.1" 200 5532 "GET /ajanlat/index?x=2 HTTP/1.1" 500 57722 ProxyPass: "GET /ajanlat/index? HTTP/1.1" 200 8692 "GET /ajanlat/index?x=1 HTTP/1.1" 500 57716 "GET /_debug/media/traceback.css HTTP/1.1" 404 1773 "GET /_debug/media/pylons/style/itraceback.css HTTP/1.1" 404 1787 "GET /_debug/media/jquery-1.2.3.pack.js HTTP/1.1" 404 1780 "GET /_debug/media/debug.js HTTP/1.1" 404 1768 "GET /_debug/media/pylons/javascripts/traceback.js HTTP/1.1" 404 1791 "GET /_debug/media/plus.jpg HTTP/1.1" 404 1768 "GET /_debug/media/pylons/img/pylons-powered-02.png HTTP/1.1" 404 1792 "GET /ajanlat/index?x=2 HTTP/1.1" 500 57640 "GET /_debug/media/pylons/style/itraceback.css HTTP/1.1" 404 1787 "GET /_debug/media/jquery-1.2.3.pack.js HTTP/1.1" 404 1780 "GET /_debug/media/traceback.css HTTP/1.1" 404 1773 "GET /_debug/media/debug.js HTTP/1.1" 404 1768 "GET /_debug/media/pylons/javascripts/traceback.js HTTP/1.1" 404 1791 "GET /_debug/media/plus.jpg HTTP/1.1" 404 1768 "GET /_debug/media/pylons/img/pylons-powered-02.png HTTP/1.1" 404 1792 You can see the PP not found the /media elements. For sure working I changed the apache dirs (I put some prefix in their names) to make them totally different than other pylons subdirs... :-) Thanks for your help: dd --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
