Thomashek Posted August 25 Share Posted August 25 I am sorry, but i didnt found any solution. 1st installation Prestashop 8.1.7 (newset) to WampServer 3.3.5 (Windows 11 64bit version), i change PHP version and some else steps, but i get this mistake: 1: HTTP 500 - error - {"success":true,"message":""} Same problem i get by installation on our web server. Somebody solve it? Link to comment Share on other sites More sharing options...
FdezdePravia Posted August 28 Share Posted August 28 (edited) I had the same issue and wasn't able to solve it. Finally I tried lower versions of PrestaShop until it worked. Now I have xampp 8.2.12 and PrestaShop 8.1.2 and it is working fine. I think it may be some kind of incompatibility between the PrestaShop and Apache server Edited August 28 by FdezdePravia (see edit history) Link to comment Share on other sites More sharing options...
endriu107 Posted September 22 Share Posted September 22 Quick fix tutorial: Link to comment Share on other sites More sharing options...
FdezdePravia Posted September 25 Share Posted September 25 On 9/22/2024 at 3:44 PM, endriu107 said: Quick fix tutorial: I'm working fine with PrestaShop 8.1.2 now, but I'll try your solution later. Thank you very much for your answer Link to comment Share on other sites More sharing options...
musicmaster Posted October 14 Share Posted October 14 When you look in your error log you will see the following error: PHP Fatal error: Uncaught ErrorException: Warning: require(C:\\xampp\\htdocs\\var\\cache\\dev\\ContainerJiLuDQW\\getSwiftmailer_EmailSender_ListenerService.php): Failed to open stream: No such file or directory in C:\\xampp\\htdocs\\var\\cache\\dev\\ContainerJiLuDQW\\appAppKernelDevDebugContainer.php:2243 The solution that Endriu mentions and that for me worked is editing the file /app/AppKernel.php Change the function getContainerClearCacheLockPath() from protected function getContainerClearCacheLockPath(): string { $class = $this->getContainerClass(); $cacheDir = $this->getCacheDir(); return sprintf('%s/%s.php.cache_clear.lock', $cacheDir, $class); } to protected function getContainerClearCacheLockPath(): string { $class = $this->getContainerClass(); $cacheDir = sys_get_temp_dir(); return sprintf('%s/%s.php.cache_clear.lock', $cacheDir, $class); } 2 Link to comment Share on other sites More sharing options...
otherprod Posted November 6 Share Posted November 6 On 10/14/2024 at 7:04 PM, musicmaster said: When you look in your error log you will see the following error: PHP Fatal error: Uncaught ErrorException: Warning: require(C:\\xampp\\htdocs\\var\\cache\\dev\\ContainerJiLuDQW\\getSwiftmailer_EmailSender_ListenerService.php): Failed to open stream: No such file or directory in C:\\xampp\\htdocs\\var\\cache\\dev\\ContainerJiLuDQW\\appAppKernelDevDebugContainer.php:2243 The solution that Endriu mentions and that for me worked is editing the file /app/AppKernel.php Change the function getContainerClearCacheLockPath() from protected function getContainerClearCacheLockPath(): string { $class = $this->getContainerClass(); $cacheDir = $this->getCacheDir(); return sprintf('%s/%s.php.cache_clear.lock', $cacheDir, $class); } to protected function getContainerClearCacheLockPath(): string { $class = $this->getContainerClass(); $cacheDir = sys_get_temp_dir(); return sprintf('%s/%s.php.cache_clear.lock', $cacheDir, $class); } This work perfectly, thank you Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now