What permissions need to be set for specific folders and subfolders when installing iGeneric Shop?

When installing iGeneric Shop, certain folders and subfolders need to have specific permissions set in order for the application to function properly. Typically, folders such as "uploads", "cache", and "logs" need to have write permissions for the web server user, while other folders may only need read permissions. This ensures that the application can write files, store data, and log errors as needed.

// Set permissions for specific folders and subfolders when installing iGeneric Shop
chmod('uploads', 0777);
chmod('cache', 0777);
chmod('logs', 0777);
// Repeat for any additional folders as needed