Home > Article > PHP Framework > What to do if thinkphp cache file writing fails
Solution to PHP cache file writing failure: First check if there is a "Runtime" folder under the project "/Application/"; then create the "Runtime" folder; then enter the Runtime file in the terminal folder; finally execute the command "chmod -R 777 *".
thinkphp cache file writing failed:
When configuring this project locally, a problem occurred and it could not be Write to /Runtime/Cache cache. This problem is a permission issue. First, check if there is a Runtime folder under your project /Application/. If not, create the Runtime folder in /Application/ yourself, and then set it. Permissions under the Runtime folder and the subfolders below it, method:
Enter the Runtime folder in the terminal, and then execute the command: chmod -R 777 *, the problem will be solved.
Recommended tutorial: "thinkphp framework"
The above is the detailed content of What to do if thinkphp cache file writing fails. For more information, please follow other related articles on the PHP Chinese website!