“Page List Not Found” / “The resource you are looking for is not available” Error
Description
When opening any Doctype or page in Frappe Desk, you may encounter the error:
"Not found"
"Page List not found"
"The resource you are looking for is not available"
This typically occurs due to caching issues, session inconsistencies in the browser, or an incomplete/misconfigured app installation or missing doctype (migrate again).
Solution
To resolve this issue, follow these steps:
-
Try a Different Browser: Open the Frappe site in an alternative browser to check if the issue persists.
-
Use Incognito Mode: Open the site in an incognito or private browsing window.
-
Clear Browser Cache:
- Go to your browser settings.
- Clear cache and cookies.
- Restart the browser and try again.
-
Migrate and Clear Cache:
bench --site [your-site] migrate bench clear-cache bench clear-website-cache bench build
-
Check Server Logs: If the issue persists, review the server logs for any underlying errors.
-
Reinstall the App (if applicable):
WARNING: Reinstalling will wipe the app’s dataIf the issue occurs when opening a Doctype from a custom or third-party app, and the Doctype exists but routes are broken so you got
404 Not Found
response, reinstall the app using the following commands:bench --site [your-site-name] uninstall-app [app-name] bench --site [your-site-name] install-app [app-name]
This reinitializes all app routes and controllers, resolving missing resource errors.
Make sure to backup your database and files first if you’re in production.