Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have redirection rule written in .htaccess both on local site and live site. Both are same. The pages of site are cached using cachelight, I have a file named cache.php uses curl to call which cachedelete.php file which then deletes cache of a page i want to delete.

The problem is due to redirection rule it seems that the page cachedelete.php is not been called. Due to POST method in CURL i was getting "Request Entity Too Large" on server but not on local. I added the post field along with the curl POST enabled , Then i got is "Moved Permanently", but the file cachedelete.php is not yet reached. I tried using file_get_contents("cachedelete.php") . The file got executed on Local , but not on server .

I also tried using RewriteCond %{HTTP_HOST} !^/clearCache/cachedelete.php$1 in htaccess locally , but independent to this condition my file_get_content("cachedelete.php") works on local. The file_get_content only fails on server . What can be the issue . Please Help . Thanks

share|improve this question

1 Answer

Well, i think you will have to try many things around.

Check that the server allows you to open remote URLs with the file functions. You should make sure that your hosting provider has not disabled remote URL fetching for security reasons. The setting is allow_url_fopen and you can inspect current configuration with phpinfo(). More info about allow_url_fopen is here

As mentioned in one comment on official PHP documentation:
Sometimes you might get an error opening an http URL even though you have set
"allow_url_fopen = On" in php.ini For me the the solution was to also set "user_agent" to something.

Moreover, I would also like to mention here that spaces are not valid in URLs. So, check for them too. Its always better to encode - decode URL.

share|improve this answer
Hey Bhavik Thanks . On Server the allow_url_fopen is "On" .But the file is not getting access . It gets redirected to home page when i use file_get_contents , else when i use crul give Moved Permanentl error . – user1099944 Feb 5 at 9:01
If that is the case, then you should check whether file really exists or not on server. If you have already done that, forget this comment and think something else. – Bhavik Shah Feb 5 at 9:40

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.