Welcome Guest, Not a member yet? Register   Sign In
I cannot receive post data.
#28

[eluser]nairit01[/eluser]
Thanks buddy CroNIX ! Your small hint helped me to solve the .htaccess problem. My redirection part was written inside this :
Code:
<IfModule mod_rewrite.so>
....
</IfModule>

That part was not being entered. There was another part below that which was being entered :
Code:
<IfModule !mod_rewrite.so>
ErrorDocument 404 /ci/index.php
</IfModule>

And the whole CI 's index.php removal from URL was working fine from that part below. Only the POST ed data was inaccessible because it was no longer a proper form post. Rather it was a redirection to the error page, which by chance was also index.php

Trial and error helped me to detect that this block will be entered correctly :
Code:
<IfModule mod_rewrite.c>
....
</IfModule>

Even though the modules file extension on Windows is .so and not .c as in Linux
And we should always create a separate error.php for redirecting the 404 errors and never use the same index.php

Valuable insight for me and may be you other readers.


Messages In This Thread
I cannot receive post data. - by El Forum - 06-27-2011, 06:19 PM
I cannot receive post data. - by El Forum - 06-28-2011, 02:06 AM
I cannot receive post data. - by El Forum - 06-28-2011, 05:10 AM
I cannot receive post data. - by El Forum - 06-28-2011, 07:48 AM
I cannot receive post data. - by El Forum - 06-28-2011, 09:16 PM
I cannot receive post data. - by El Forum - 06-29-2011, 03:44 AM
I cannot receive post data. - by El Forum - 06-29-2011, 07:18 AM
I cannot receive post data. - by El Forum - 06-29-2011, 07:29 AM
I cannot receive post data. - by El Forum - 06-29-2011, 07:48 AM
I cannot receive post data. - by El Forum - 06-29-2011, 08:14 AM
I cannot receive post data. - by El Forum - 06-29-2011, 09:00 AM
I cannot receive post data. - by El Forum - 06-30-2011, 10:39 AM
I cannot receive post data. - by El Forum - 06-30-2011, 02:31 PM
I cannot receive post data. - by El Forum - 06-30-2011, 02:39 PM
I cannot receive post data. - by El Forum - 06-30-2011, 02:47 PM
I cannot receive post data. - by El Forum - 06-30-2011, 03:02 PM
I cannot receive post data. - by El Forum - 06-30-2011, 03:09 PM
I cannot receive post data. - by El Forum - 06-30-2011, 03:17 PM
I cannot receive post data. - by El Forum - 06-30-2011, 03:31 PM
I cannot receive post data. - by El Forum - 06-30-2011, 08:24 PM
I cannot receive post data. - by El Forum - 06-30-2011, 08:28 PM
I cannot receive post data. - by El Forum - 07-01-2011, 06:41 AM
I cannot receive post data. - by El Forum - 07-01-2011, 07:18 AM
I cannot receive post data. - by El Forum - 02-17-2014, 03:33 AM
I cannot receive post data. - by El Forum - 02-17-2014, 05:50 AM
I cannot receive post data. - by El Forum - 02-18-2014, 02:46 AM
I cannot receive post data. - by El Forum - 02-18-2014, 02:03 PM
I cannot receive post data. - by El Forum - 02-19-2014, 12:03 AM



Theme © iAndrew 2016 - Forum software by © MyBB