Jump to content

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'.


Recommended Posts

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'.

 

ff.JPG

Link to comment
Share on other sites

  • 2 weeks later...
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

<?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

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

Guest
This topic is now closed to further replies.
×
×
  • Create New...