philou83 Posted October 20, 2005 Share Posted October 20, 2005 Hi, In my configure.php, I have : define('USE_PCONNECT', 'false'); What are difference if 'USE_PCONNECT' is false or true. What happens if 'USE_PCONNECT' is true ? thank for your help Link to comment Share on other sites More sharing options...
Guest Posted October 20, 2005 Share Posted October 20, 2005 Hi,In my configure.php, I have : define('USE_PCONNECT', 'false'); What are difference if 'USE_PCONNECT' is false or true. What happens if 'USE_PCONNECT' is true ? thank for your help If you are on a shared server then make that "True" if you are on a dedicated server then you can use either one. It is a security measure. Link to comment Share on other sites More sharing options...
♥Vger Posted October 20, 2005 Share Posted October 20, 2005 If you are on a shared server then make that 'false', as otherwise the number of customers who can use your site at any one time will be severely limited. Your hosting company may even bar the use of persistent connections on a shared server, in which case your site won't run at all. You should only enable 'use_pconnect' when you have a dedicated server and can set your own limits in the httpd.conf file. Vger Link to comment Share on other sites More sharing options...
Guest Posted October 20, 2005 Share Posted October 20, 2005 If you are on a shared server then make that 'false', as otherwise the number of customers who can use your site at any one time will be severely limited. Your hosting company may even bar the use of persistent connections on a shared server, in which case your site won't run at all. You should only enable 'use_pconnect' when you have a dedicated server and can set your own limits in the httpd.conf file. Vger well...I had the idea...just had it backward...my bad... :D Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.