묻고답하기
최신 버젼 설치후 이런 애러가..
2011.10.01 06:40
godaddy 라는 미국 호스팅에 설치 하니 이런 애러가 납니다.
어찌해야 할까요?
Warning: Call-time pass-by-reference has been deprecated in /home/content/80/7784380/html/tv/classes/db/DBSqlite2.class.php on line 428
Warning: Call-time pass-by-reference has been deprecated in /home/content/80/7784380/html/tv/classes/db/DBSqlite2.class.php on line 457
Warning: Cannot modify header information - headers already sent by (output started at /home/content/80/7784380/html/tv/classes/db/DBSqlite2.class.php:428) in/home/content/80/7784380/html/tv/classes/display/DisplayHandler.class.php on line 62
Warning: Cannot modify header information - headers already sent by (output started at /home/content/80/7784380/html/tv/classes/db/DBSqlite2.class.php:428) in/home/content/80/7784380/html/tv/classes/display/DisplayHandler.class.php on line 232
Warning: Cannot modify header information - headers already sent by (output started at /home/content/80/7784380/html/tv/classes/db/DBSqlite2.class.php:428) in/home/content/80/7784380/html/tv/classes/display/DisplayHandler.class.php on line 233
Warning: Cannot modify header information - headers already sent by (output started at /home/content/80/7784380/html/tv/classes/db/DBSqlite2.class.php:428) in/home/content/80/7784380/html/tv/classes/display/DisplayHandler.class.php on line 234
Warning: Cannot modify header information - headers already sent by (output started at /home/content/80/7784380/html/tv/classes/db/DBSqlite2.class.php:428) in/home/content/80/7784380/html/tv/classes/display/DisplayHandler.class.php on line 235
Warning: Cannot modify header information - headers already sent by (output started at /home/content/80/7784380/html/tv/classes/db/DBSqlite2.class.php:428) in/home/content/80/7784380/html/tv/classes/display/DisplayHandler.class.php on line 236
Warning: Cannot modify header information - headers already sent by (output started at /home/content/80/7784380/html/tv/classes/db/DBSqlite2.class.php:428) in/home/content/80/7784380/html/tv/classes/display/DisplayHandler.class.php on line 237
Warning: Cannot modify header information - headers already sent by (output started at /home/content/80/7784380/html/tv/classes/db/DBSqlite2.class.php:428) in/home/content/80/7784380/html/tv/classes/display/DisplayHandler.class.php on line 70
Warning: Cannot modify header information - headers already sent by (output started at /home/content/80/7784380/html/tv/classes/db/DBSqlite2.class.php:428) in/home/content/80/7784380/html/tv/classes/display/DisplayHandler.class.php on line 70
댓글 2
-
별을 사랑했네
2011.10.01 07:35
-
sjap97
2011.10.03 18:47
http://www.xpressengine.com/20064630
참고해 보세요.
정상정으로 복구가 되길....
xe 소스 코드를 보시면..
function _filterNumber(&$value) 함수가 있습니다.(이함수말고도 여러 함수가 있음)
php 상위 버전에서는 함수를 호출할때에 &를 쓰지 않도록 해야하고(deprecate되었으므로)
위와 같이 함수 선언을 해놓았기때문에 &를 쓰지 않아도 됩니다.
위 함수말고 다른 함수도 있지만.. 찾기 귀찮아서 임시방편으로 아래와 같이 코드를 추가해주시면됩니다.
XE 1.4.5.7 기준..
xe/index.php
define('__ZBXE__', true); 다음행에 아래 코드 추가..
@ini_set('display_errors', 0);
xe 다음 버전에서는 해결 되길 바랍니다..