Big_73 0 Posted March 19 Report Share Posted March 19 Hey guys, I'm trying to install x2crm on siteground, but the install.php page just displays the header. There are no fields to fill in. Avete qualche sugerimento? Quote Link to post Share on other sites
Big_73 0 Posted March 19 Author Report Share Posted March 19 If it can be useful to someone, the problem is determined by the server-side cache: It seems that the output of the installation script is cached before the page is properly loaded. I have disabled the dynamic caching by adding the following code to the .htaccess file: <IfModule mod_headers.c> Header set Cache-Control "max-age=0,no-store" </IfModule> Once I did that the installation page started timing out as was taking too long to respond and reached some of the predefined limitations on the server. To solve that, I went ahead and increased the dynamic timeout by adding these lines to the .htaccess: <IfModule mod_dtimeout.c> <Files ~ ".php"> SetEnvIf Request_URI "install.php" DynamicTimeout=300 </Files> </IfModule> now the installation page loads properly, I hope it will help someone Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.