bybilgili Posted March 8, 2020 Share Posted March 8, 2020 Aldığım hata: This request takes too long to process, it is timed out by the server. If it should not be timed out, please contact administrator of this web site to increase 'Connection Timeout'. Bu sorunu nasıl çözebilirim? --EN: Hello guys, how can I fix this problem? can you help me? I get 1 minute query error when I register the products! Request Timeout This request takes too long to process, it is timed out by the server. If it should not be timed out, please contact administrator of this web site to increase 'Connection Timeout'. Link to comment Share on other sites More sharing options...
SahinSOLMAZ Posted March 18, 2020 Share Posted March 18, 2020 On 3/8/2020 at 10:58 PM, bybilgili said: Hello guys, how can I fix this problem? If you use English Lang., you have to send your answer/topic in International community (English). BTW, you need to enable debug mode, then you can share the error - output with us. -- Türkçe devam edecekseniz, buradan devam edebilirsiniz. Link to comment Share on other sites More sharing options...
bybilgili Posted March 18, 2020 Author Share Posted March 18, 2020 Debug modunu nasıl aktifleştirebilirim? --EN: BTW, How can I activate debug mode? Link to comment Share on other sites More sharing options...
SliderFlash Posted March 18, 2020 Share Posted March 18, 2020 3 hours ago, bybilgili said: BTW, How can I activate debug mode? » v1.4 to v1.5.2 config/config.inc.php dosyasını açın, 29. satırda şu satırı göreceksiniz => @ini_set('display_errors','off'); bu satırı @ini_set('display_errors','on'); <= olarak güncelleyin. » v1.5.3 ve sonrası için (1.6 ve1.7 de geçerli) config/defines.inc.php dosyasını açın, 28. satırda, define('_PS_MODE_DEV_', false); <= göreceğiniz bu kısmı define('_PS_MODE_DEV_', true); <= olarak güncelleyin. Not: satır numaraları değişkenlik gösterebilir. --EN: » From PrestaShop v1.4 to v1.5.2 Open config/config.inc.php On line 29, you will find this line: @ini_set('display_errors','off'); Replace it with: @ini_set('display_errors','on'); » PrestaShop v1.5.3 and later versions (including 1.6 and 1.7) Open config/defines.inc.php On line 28, you will find this line: define('_PS_MODE_DEV_', false); Replace it with: define('_PS_MODE_DEV_', true); Once error reports from the FTP or CPanel are activated, you can browse your store's front or back office to find out what the problem is. Link to comment Share on other sites More sharing options...
SahinSOLMAZ Posted March 18, 2020 Share Posted March 18, 2020 @SliderFlash, @bybilgili Arkadaşlar, yukarda yazdım tekrar yazıyorum: Türkçe forumda İngilizce yazışmayınız. İngilizce araştırıp, soruşturacaksanız bunun için Global Forum (İngilizce) var. Mesajlarınızı TR olarak sürdürmelisiniz. 1 Link to comment Share on other sites More sharing options...
bybilgili Posted March 18, 2020 Author Share Posted March 18, 2020 <?php /* * 2007-2016 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/osl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA <[email protected]> * @copyright 2007-2016 PrestaShop SA * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ $currentDir = dirname(__FILE__); ------------------------------------------------------------------------------ /* Custom defines made by users */ if (is_file($currentDir.'/defines_custom.inc.php')) { include_once($currentDir.'/defines_custom.inc.php'); } require_once($currentDir.'/defines.inc.php'); $start_time = microtime(true); /* SSL configuration */ define('_PS_SSL_PORT_', 443); /* Improve PHP configuration to prevent issues */ ini_set('default_charset', 'utf-8'); ini_set('magic_quotes_runtime', 0); ini_set('magic_quotes_sybase', 0); /* correct Apache charset (except if it's too late */ if (!headers_sent()) { header('Content-Type: text/html; charset=utf-8'); } /* No settings file? goto installer... */ Line 28 is empty, but! Link to comment Share on other sites More sharing options...
SahinSOLMAZ Posted March 18, 2020 Share Posted March 18, 2020 Konuyu kilitledim. Benzeri davranışı sergilemeye devam ederseniz, uzaklaştırılacaksınız. 2 minutes ago, bybilgili said: <?php /* * 2007-2016 PrestaShop * /* correct Apache charset (except if it's too late */ if (!headers_sent()) { header('Content-Type: text/html; charset=utf-8'); } /* No settings file? goto installer... */ Line 28 is empty, but! Bunun cevabı da yukarda var, yazılanları düzgün bir şekilde takip eder ve kurallara uyarsanız, hem kendi sorununuz hızlıca çözüme kavuşur hem de forumun akışını bozmazsınız. "Not: satır numaraları değişkenlik gösterebilir." diye eklemiştim. Link to comment Share on other sites More sharing options...
Recommended Posts