![]() |
|
Can't upload more than N files at once - 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: Can't upload more than N files at once (/thread-9187.html) |
Can't upload more than N files at once - Nelsonr87 - 2011-10-24 Hi there, I'm having some trouble with uploading multiple files. I can't seem to upload more than 5 files at once, it will upload like 3 or so and redirect before even ending the rest. Any help would be sure welcome. Can't upload more than N files at once - acrylian - 2011-10-25 Please provide minimum info of your install and review server and browser error logs. Can't upload more than N files at once - Nelsonr87 - 2011-10-26 The server it's using PHP 5.2.17. Here's the setup log: Quote:Zenphoto Setup v1.4.1.4[8157] Mon, 24 Oct 2011 15:05:37 +0100 Quote:[24-Oct-2011 14:58:16] PHP Warning: require(/home/user/public_html/admin/zenphoto/zp-data/zp-config.php) [function.require]: failed to open stream: No such file or directory in /home/user/public_html/admin/zenphoto/zp-core/functions-basic.php on line 58 Can't upload more than N files at once - acrylian - 2011-10-26 It will be magic_quotes. Please disable that. Can't upload more than N files at once - Nelsonr87 - 2011-10-26 Disabled it but unfortunately that didn't resolved my problem. EDIT: DOUBLE EDIT: Can't upload more than N files at once - sbillard - 2011-10-26 Which file upload methods have you tried? The redirection is an indication that the upload method said it was finished. If it is not flagging an error then we are pretty much at a loss to know why it is not uploading. The only possible thing from your configuration would be the filesystem character set. (magic_quotes will not be involved!). The character set will matter only if you have diacritical marks in your filenames. Can't upload more than N files at once - acrylian - 2011-10-26 My bad, my collegue is of course right, magic quotes has nothing to do with this at all....not my day... Can't upload more than N files at once - Nelsonr87 - 2011-10-27 I've tried through FTP and the flash uploader both work correctly. I've tried files with and without special characters (âãáç) and the behaviour is the same. Could it be anything related with post_max_size or upload_max_filesize? Can't upload more than N files at once - acrylian - 2011-10-27 Yes, it can be related to those but that normally would affect the flash uploader as well. Btw, how is that not intuitive? It works actually as on the normal desktop system by selecting several images. As a "workaround" it should not be that hard to guide your client to use that (you will have to tell him a little about using Zenphoto anyway, right?). Can't upload more than N files at once - Nelsonr87 - 2011-10-27 I'm not saying it's not intuitive but having the ability to drag images right into the upload spot increases usability. Also having a preview of the images selected it's a bonus if you decide to remove a certain image from the list. The workaround will have to do meanwhile. Can't upload more than N files at once - acrylian - 2011-10-27 Ok, was just curious as I admit almost never having used the jquery upload which my collegue added to replace an older upload alternative. I personally use most always FTP directly. Can't upload more than N files at once - mwalsh - 2011-10-27 When uploading multiple files with the jquery uploader, every time an upload completes the onComplete method is called. This function is resetting the file count so that the form is submitted the next time a file completes. File: Line 147: Remove those lines and the feature acts as it should. |