firstly i was facing this error operatonal error randomly database write
but when i fixed this error by these commands chmod 664 ~/myproject/db.sqlite3 sudo chown :www-data ~/myproject/db.sqlite3 sudo chown :www-data ~/myproject
then i got this error Forbidden You don’t have permission to access this resource.
please help me
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!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
Hi @akshaykoshti401,
Apache usually searches for an index.html, index.php, index.htm files in the WebRoot of the website you are loading. If it can’t find any, it will throw the 403 forbidden error.
Depending on the initial file your website should load, you can edit the website’s vhost file. In your vhost file, you’ll find a line that would look something like that
Add the first file your website should load right after
DirectoryIndex
and restart Apache.Regards, KFSys