Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Given hello.php:

<?php echo "Hello"; ?>

rendering the page works fine and returns Hello, however

http://myserver.com/hello.php?test=http%3a//whatever.com

returns a 403 Forbidden. But oddly enough, making the first letter of http uppercase works fine:

http://myserver.com/hello.php?test=Http%3a//whatever.com

FYI, percent encoding the slashes also 403s:

http://myserver.com/hello.php?test=http%3a%2f%2fwhatever.com

I'm beginning to suspect this may be an issue with Passenger (which I use to serve RoR)

share|improve this question

3 Answers

up vote 5 down vote accepted

It is mod_security's 10_asl_rules.conf causing this error.

share|improve this answer
can you explain how to fix this? – Dan Jan 6 '11 at 10:32
I removed mod_security. – Hafthor Jan 25 '11 at 17:39

Perhaps your htaccess is picking up on something in that URL and sending forbidden headers. Do you have a .htaccess file?

share|improve this answer
sure, but nothing that would affect this. – Hafthor Jul 7 '09 at 0:21

have you tried encoding the URL in base64?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.