Upload multiple images in database at once

Hi, I have a serious problem. I have an online shop on WIX. I have about 10,000 products with images and description. I have an excel file of all the info. I want to select multiple images and upload them in wix database at once, I don not have enough time to upload images one by one. Please help me I need to get things ready ASAP.

I’m having the same problem. I have been searching for 2 consecutive days and can’t do it!

Same here. What is going on?

Anyone discover a solution to this?

Creating a site where users can sign up and there page has a gallery that I want to have them upload multiple pics and can’t find a way to do that

I really need this as well! I have over 2000 images in total that need to be added! Perhaps if we could simply select a broad range of images and have wix enter them into the database rows by alphabetical sort would be awesome!

Include the database configuration file to connect and select the MySQL database.Get the file extension using pathinfo() function in PHP and check whether the user selects only the image files.Upload images to the server using move_uploaded_file() function in PHP Prepaid Gift Balance

The ability to upload multiple images is in development. Unfortunately Wix cannot commit to release dates, but know that it is in the works!

That’s the solution I did. It works great, only in the database is for some reason presented in code form and not images. But this site works well.

var workImages = [];
export async function uploadWork_change_1(event) {
let greenFlag = false;
let file = $w('#uploadWork').value;
if(file.length > 0){
let response = await $w('#uploadWork').startUpload($w('#uploadWork').buttonLabel = 'טוען ...');
greenFlag = response;
if(greenFlag){
workImages.push({
"src": response.url,
"description": "",
"title":  file[0].name
});
greenFlag = false;
console.log(workImages, file[0].name);
$w('#uploadWork').buttonLabel = 'בחר תמונה נוספת'
// $w('#uploadedTxt').expand();
// $w('#uploadedTxt').text = `Done, Uploaded ${file[0].name}`;
}
}
}
export function button106_click(event) {
$w("#dataset1").setFieldValues( {
"galeri":  workImages,
} );
$w("#dataset1").save();
//Add your code for this event here:
}

Did you ever get an answer for making this happen?

This solution was used in 2020 → we have 2024 already!

Do not folow to old posts → they will lead you to wrong or at least totaly outdated SOLUTIONS !!!

Instead open your own individual post and describe your issue in detail.

@CODE-NINJA Absolutely agree with the importance of creating new and up-to-date posts! :rocket: Our forums underwent a merge, so the dates might be a bit tricky to follow.

@djc I understand that the solution shared in 2020 was valuable then, but if you still would like input from the community on this, feel free to open a new post!