![]() |
|
HTTP Error - flash upload - Printable Version +- ZenphotoCMS Forum (https://forum.zenphoto.org) +-- Forum: Support (https://forum.zenphoto.org/forum-1.html) +--- Forum: General support (https://forum.zenphoto.org/forum-4.html) +--- Thread: HTTP Error - flash upload (/thread-10959.html) |
HTTP Error - flash upload - tori - 2013-03-29 Hi, I've used Chrome, Safari and firefox, updated my flash and my imac but still no luck. HTTP Error - flash upload - acrylian - 2013-03-29 Server error log? Either there are permission issues or your server has some security extensions interfering. HTTP Error - flash upload - DieBagger - 2013-04-29 Fyi I have the same issue and after some digging this is what I found: In the flash uploader.php the variable $_POST['auth'] is wrong. The variable is like this: "A D U1lp0Bw9..." while the actual db entry looks like this: "A+D+U1lp0Bw9..." So the plus signs ("+") are missing and instead replaced by whitespaces (" "). This happened on two different users, others had no plus sign and there it worked out of the box. My temporary "fix" was to add $hash = str_replace(" ", "+", $hash); in "zenphoto\zp-core\zp-extensions\uploader_flash\uploader.php" on line 9. Hope this helps you track down the root of the issue... HTTP Error - flash upload - acrylian - 2013-04-29 Best you open a ticket on GitHub. On the forum this will get lost. Also note that the flash uploader will not be part of the next major release 1.4.5 anymore. |