Hello everybody !
I created a 7.2 website locally. It is working fine.
I decided to put this website on the server (with https)
I receive a message :
Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 62994856 bytes) in /home/lereseau/public_html/inc/classes/BxDolDb.php on line 486
This server has 512MB memory
Locally, i have 256MB and it is working fine.
I also noticed that in the SQL backup file, Dolphin was saving the path of the URLS (http://localhost/dolphin72/...)
I changed these URLS with "https://mywebsite.com/"
I also added these lines in .htaccess (for https)
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
I am working with a good php version... so, can someone tell me where the problem is ?
Thank you :-)