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.

I'm trying to put a URL as the value of one of my URI segments in CI. My controller method is defined to accept such an argument. However, when I go to the URL, I get a 404 error. For example:

www.domain.com/foo/urlencoded-url/

Any ideas what's wrong? Should I do this via GET instead?

UPDATE:

// URL that generates 404 http://localhost/myapp/profile_manager/confirm_profile_parent_delete/ugpp_533333338/http%3A%2F%2Flocalhost%2Fmyapp%2Fdashboard%2F

// This is in my profile_manager controller public function confirm_profile_parent_delete($encrypted_user_group_profile_parent_id = '', $url_current = '')

If I remove the second URI segement, I don't get a 404: http://localhost/myapp/profile_manager/confirm_profile_parent_delete/ugpp_533333338/

share|improve this question
1  
Can you post the specific URL and controller code? – Colin May 16 '12 at 2:17
Is the URL the method? or are you set up to leave off the method? Otherwise, try /foo/method/variable i.e. /foo/index/url – MikeCruz13 May 16 '12 at 3:38
is the encoded url generating characters that are not allowed in the CI URI? – The Shift Exchange May 16 '12 at 4:24

3 Answers

up vote 2 down vote accepted

It seems that the %2F breaks things for apache.

Possible solutions:

  1. preg_replace the /'s to -'s (or something else) before sending the url then switch it back on the other end.
  2. Set apache to AllowEncodedSlashes On
  3. bit of a hack, but you could even save the url to a session variable or something instead of sending through the url *shrug *
  4. double url encode it before sending
share|improve this answer
#1 is a pain, #2 means a reliance on server settings, and #3 just wont work for me as there would be too many URLs to put in session. Would it be the same problem if I made this a GET? I'll give it a try. – StackOverflowNewbie May 16 '12 at 7:11
Not sure what you mean by making it a "Get" you are already sending it through the URL, no? Anyway.. #1 doesn't seem like a pain to make 2 small helper functions to encode / decode the url and I think it's the best solution... however, the problem is actually being caused by the Apache server, not codeigniter, which is why the 2nd solution. You can, however, try double url encoding the url before sending. – MikeCruz13 May 16 '12 at 7:35
1  
+1 Double encode/decode worked for me. – Nick Pyett May 16 '12 at 11:20
Worked for me, too. Thanks. – StackOverflowNewbie May 16 '12 at 14:58

You may need to change the rule in config/route.php to accept the encoded characters in URL. Also you can take a look at some of the solution from below articles:

share|improve this answer

I actually had to do urlencode(urlencode(urlencode(

and urldecode(urldecode(urldecode(

3 times!! and it finally worked, twice didn't cut it.

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.