while uploading the theme the above error comes up on my screen
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hi @vickychavan1991,
You’ll need to check the wp-content and upload folders and that they have the proper permissions. Folders should have 755 permissions while files need to have 644. You can change them like so
chmod 755 Direcotry
chmod 644 Files
Now, the above will only change the certain directory or file but not recursively all beneath the folder. To check everything recursively, you can use the following command
find /path/to/your/website -type d -exec chmod 755 {} \; && find /path/to/your/website -type f -exec chmod 644 {} \;
You’ll need to change the /path/to/your/website bit with the path to your wp-content folder. Additionally, please note you’ll need to change path on both places in the command.
Regards, KDSys
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.