Imgur Download Post Not Working
I'm trying to build a simple login system using <form method='post'>
. Everything works fine on MAMP on my laptop but when I upload the script to the server (Windows) it doesn't work; it seems that the $_POST array is empty.
A Pure client-side webapp to download entire or parts of Imgur albums. Or albums containing very high resolution photos might not work, depending on how. Is there any way to download a WHOLE Imgur album? Button on the bottom of the imgur post. I've used it before. In the free version or not. (I don't work for. Hello, been having an issue last 3 days. I cannot access imgur.com, nor view any of the images linking off the site. I am able to view it through VPN server, but other wise, i cannot, regardless of browser I use. I have re-booted router to test that out but same issue. I tried to re-search this but. We would like to show you a description here but the site won’t allow us. Ctrl+v does not work on imgur.com i am using original Firefox, lawliet fox, Firefox by tophe, pale moon and cyberfox. Also i'm using ie11, opera, chrome. Only chrome accept ctrl+v function on imgur.com. It does'nt matter login or not. Check whether Imgur.com server is down right now or having outage problems for everyone or just for you. If you can access a website at office or from a 3G network yet it's not working on your computer, it is a good idea to use an alternative DNS service other than your ISPs. Isitdownrightnow.com is not affiliated with or endorsed.
I commented out everything but the bare bones and it still doesn't work.
index.php:
_scripts/check_login.php: (I've removed everything except some var_dumps for debugging)
When I submit the form, no matter what I put in the text fields, I see this:
If I change all the instances of 'post' to 'get' in the above two files, everything works fine. But I don't want to use get. ($_REQUEST doesn't work either if I submit the form using method='post').
NB this all works fine on localhost, but not on the server (which is running Windows.) So it would seem to be a problem with the server, but I have no idea what. You can see the PHPInfo here: http://brailleapps.org/phpinf0.php
Any ideas?
EDIT: Solved! See below.
3 Answers
I got it fixed eventually, figure I might as well post what worked here in case someone else has the same problem in future.
Turns out one of these HTTP modules was interfering with POST:
RadCompression
RadUploadModule
With these modules turned off, POST worked fine.
(NB this was on a totally new app where I knew there wasn't any existing code that might have depended on one of those modules... turning them off may have unintended consequences I'm not aware of, YMMV.)
One possibility is that POST is not an allowed verb on the server:
I've had the same problem with $_POST being empty/NULL, and after spending 30 minutes searching SO and Google I finally found a solution that worked for me.
Imgur Download Post Not Working On Windows 10
Since I don't know how to change the php.ini file for MAMP I edited my htaccess to include this:
and I can var_dump($_POST) with the submitted input fine now.
Reference link: http://helpfulcoder.blogspot.ca/2011/01/empty-post-array-in-mamp.html