2016-09-05 4 views
0

백 오피스 덕분에 제품을 추가하고 싶습니다. 그러나, 내가 제품을 추가하려고 할 때 이것은 나타났다.Prestashop 제품 시간 초과를

"A server error occurred while loading the tabs: some tabs could not be loaded. 
Please try again by refreshing the page. 
If you are still encountering this problem, please check your server logs or contact your hosting provider for assistance." 

무엇의 suprises 나 우리가 네트워크를 볼 때 , 스크립트 내 max_execution_time을 60 초 경우에도 30 초 후에 (안 500 오류)를 취소한다는 것입니다.

enter image description here

따라서, 나는 내 서버 로그를 검색하고 이걸 발견하지만 난이 관련이 있다고 생각하지.

[Mon Aug 01 10:11:03.852933 2016] [:error] [pid 30238] [client 192.168.122.117:60428] PHP Notice: Undefined index: nbItemsPerLine in /var/www/html/tools/smarty/sysplugins/smarty_internal_templatebase.php(157) : eval()'d code on line 49 

[Mon Aug 01 10:11:03.852974 2016] [:error] [pid 30238] [client 192.168.122.117:60428] PHP Notice: Trying to get property of non-object in /var/www/html/tools/smarty/sysplugins/smarty_internal_templatebase.php(157) : eval()'d code on line 49 

[Mon Aug 01 10:11:03.853026 2016] [:error] [pid 30238] [client 192.168.122.117:60428] PHP Warning: math: function call nbItemsPerLine not allowed in /var/www/html/tools/smarty/plugins/function.math.php on line 53 
[Mon Aug 01 10:11:03.853053 2016] [:error] [pid 30238] [client 192.168.122.117:60428] PHP Notice: Undefined index: nbItemsPerLineTablet in /var/www/html/tools/smarty/sysplugins/smarty_internal_templatebase.php(157) : eval()'d code on line 51 

[Mon Aug 01 10:11:03.853063 2016] [:error] [pid 30238] [client 192.168.122.117:60428] PHP Notice: Trying to get property of non-object in /var/www/html/tools/smarty/sysplugins/smarty_internal_templatebase.php(157) : eval()'d code on line 51 
[Mon Aug 01 10:11:03.853085 2016] [:error] [pid 30238] [client 192.168.122.117:60428] PHP Warning: math: function call nbItemsPerLineTablet not allowed in /var/www/html/tools/smarty/plugins/function.math.php on line 53 

나는이 문제를 어떻게 해결할 수 있는지 알고 있습니까?

감사합니다.

+0

max_execution_time이 60으로 설정되어 있습니까? 백 오피스의 경우 '고급 매개 변수'> '구성 정보'로 이동하고 '서버 정보'의 경우 최대 실행 시간이 인쇄됩니다. –

답변

0

이러한 경고는 실제 문제 (예 : 장바구니 문제 등)가 있습니까?

그렇다면 PrestaShop 오류보고 기능을 끄십시오.이 내용은 단지주의 사항이며 무시할 수 있습니다.

참고로 디버깅을 사용 중지하려면 아래 단계를 따르십시오.

  • 열려있는 파일 : 설정/defines.inc.php (FTP를 사용하거나 제어판 호스팅)

  • 변화 진정한 -> 거짓

정의 ('_ PS_MODE_DEV_'을, 참된);

define ('_ PS_MODE_DEV_', false);

관련 문제