158 comments found.
Please provide more information about your product. Will the uploaded data file retain its name or will it automatically change?
Support for all our items is conducted through our Support Forum. Please register an account and search the forum or create a new topic, we’ll answer as soon as possible. Thank you!
have you updated to php 8.2?
Yes, script will work correctly with PHP 8.2. Please also check our other script which provides more functionalities: https://codecanyon.net/item/image-multi-upload/119999
this item compatible with php CodeIgniter or only WordPress?
This is php/js script, WordPress version is available here: https://codecanyon.net/item/ajax-multi-upload-for-wordpress/144658
I need to have multiple file uploaders on the same page, with each one uploading to a different directory path. How can I have multiple file uploaders on a page?
Please consider our other script which is providing more functionalities: https://codecanyon.net/item/image-multi-upload/119999 You can also find examples of how to put many uploaders on the same page. If you will have any questions please ask them via our Support Forum.
Hi may I know if this script is SaaS ready?? Does it come with features like on COLLECT by wetransfer.com ?
Hi,
If you need some additional features then you need to make integration on your own. You can check included script functionalities on live demo preview. Please check also our Image Multi Upload script which is including more functionalities for images like thumbnails, watermaks etc. https://codecanyon.net/item/image-multi-upload/119999
Good luck with your sales
Thank you!
Hello, can this script upload to another server?
Hello,
That is not possible.
Hello, can we use this script in forum plugin? I want to use it as a photo upload plugin for the forum in the WoWonder script.
https://ibb.co/fYsvJKhHello,
Yes, you can but if this is a product for sale, you need to purchase plugin extended license instead of regular license.
Does it support https?
If I install this uploader in one linux server (main server), Can I upload files to another linux server (second server)? if yes, Does files upload directly to second server? or first, files upload to main server then they are transfer to second server?
It should work with https. Anyway you can’t make an upload between different servers because of Cross-Origin Resource Sharing (CORS) restrictions.
Hello , i did a mistake , i need the same plugin but for wordpress and i purchased this , can i pay the difference and switch ?
Hello,
I have replied to your refund request, please take a look.
Hi,
Support for all our items is conducted through our Support Forum.
Please register an account and search the forum or create a new topic, we’ll answer as soon as possible. Thank you!
Upload filed, this script no work 
my directory name is files/
directory files set it to 755 and 777 but script no work
Support for all our items is conducted through our Support Forum. Please register an account and search the forum or create a new topic, we’ll answer as soon as possible. Thank you!
I have hosting with godaddy. CanI view image on server as if now it show only as file cannot make out image from file. I run a prestashop store and prestashop create image with different name and different file size on server. Once product is sold and deleted I Need to delete image on server.
We have another uploader with better images support: https://codecanyon.net/item/image-multi-upload/119999 Please check it.
I am looking something to delete image from server
I have images on server. On my computer (Local computer) I can see priview for e.g if image of flower, house, or sun so looking at image I can make out if this house image. But not server godaddy they are just show as file (jpg or png) all look same just with different name.
These name are also created by prestashop (ecommerce software) so it not possible to find which image is of house out hundreds of image.
Only way to find out is download entire folder of image from server to local computer then view them in picture viewer then delete the image not required and upload folder back to server.
What I need know with your software can I view images on server where its is stored and delete which images are not required instead of downloading entire folder to local computer. I need priview image on server.Than delete image on server
Image uploader is showing image preview just after upload but it doesn’t have image listing functionality of the images uploaded in the past. If you’re interested we can prepare such a functionality as a custom job. Please contact me via contact form in my profile to discuss the details.
is it possible to connect this uploader to detabase ?
Please check my other plugin – https://codecanyon.net/item/image-multi-upload/119999 it has more features and can upload any type of file as well. You can find the code for database in the comments, for example here – https://codecanyon.net/item/image-multi-upload/119999/comments?filter=all&term=mysql&utf8=%E2%9C%93#comment_1751365
The Target path not work. Upload everytim in root instead folder files or whatever i create. Pls fix thanks Test:
Support for all our items is conducted through our Support Forum. Please register an account and search the forum or create a new topic, we’ll answer as soon as possible. Thank you!
I bought script. Uploaded the example included. I created a “files” directory and set permissions to 755. When I go to test I get HTTP ERROR. Why???
Support for all our items is conducted through our Support Forum. Please register an account and search the forum or create a new topic, we’ll answer as soon as possible. Thank you!
Doesn’t work on mobile. Can I have a refund?
You need to contact Envato Support in this case. As author I’m not able to give you a refund.
The name of this uploader is Ajax Multi Upload, but working just with flash
On iPad and iPhone this not work :((((
Better name for this is Flash Ajax Multi Upload….
Yes, it’s basing on flash. You can find the info about that in the right sidebar on item page. I’m sorry for inconvenience.
Hi. Can be used in mobile?
Hi,
It’s using flash, so the mobile needs to support flash, so uploader can work on it.
How can i rename an uploaded file to prevent an overwrite.
You can replace line 13 in upload.php file:
$targetFile = $targetPath . stripslashes($_FILES["Filedata"]["name"]);with below code:
$pathinfo = pathinfo($_FILES['Filedata']['name']); $fileExt = $pathinfo["extension"]; $fileName = stripslashes($pathinfo["filename"]) . time(); $targetFile = $targetPath . $fileName . "." . $fileExt;