file_put_contents(C:\xampp\htdocs\sedif\storage\framework/sessions/7BHJGDUbv9Kccy6r7jt9RWzd5PJX8j2lDwxdiIwq): No se pudo abrir la secuencia: No existe tal archivo o directorio
When entering the url of my website it sends me this error which tells me that a file is missing or that it is not found, it is worth mentioning that my page that I am trying to upload was made in Laravel, I have already uploaded all my files , and I have assigned the corresponding permissions and it still sends me this error, if anyone can help me I would greatly appreciate it
Other Information
Everything is uploaded correctly and the index, htaccess, autoload, and env files are configured correctly, but it still gives me these errors
Could you please try to clear empty bootstrap/cache folder in your website?
Laravel caches configuration for performance, but if you generate the cache on your computer, it may end up caching values specific to your computer which don’t work on our hosting, like the directory where Laravel is setup.
I already checked it but now it gives me the following error: 500
SERVER ERROR
I have to modify something else, it should be noted that I deleted the entire cache folder
You could try to enable Display Errors in the PHP options of your site:
However, your own software may override this setting. Sometimes there is a debug mode flag or a log file in your website to obtain real error messages.
You can try setting APP_DEBUG=true in your .env file, or manually update the debug option in config/app.php directly. You may also find errors in the storage/logs folder of your site.