ช่วยดูหน่อยครับ อัพแล้วเกิด error - Joomla! Forum - community, help and support
เว็บขึ้นครับ แต่มี error เป็นเพราะอะไรคร๊าบบบบ
บรรทัดที่ error ครับ
joomla.php
697 setcookie( $sessioncookiename, '-', false, '/' );
index.php
226 header( 'expires: mon, 26 jul 1997 05:00:00 gmt' );
227 header( 'last-modified: ' . gmdate( 'd, d m y h:i:s' ) . ' gmt' );
228 header( 'cache-control: no-store, no-cache, must-revalidate' );
229 header( 'cache-control: post-check=0, pre-check=0', false );
230 header( 'pragma: no-cache' );
บรรทัดที่ error ครับ
joomla.php
697 setcookie( $sessioncookiename, '-', false, '/' );
index.php
226 header( 'expires: mon, 26 jul 1997 05:00:00 gmt' );
227 header( 'last-modified: ' . gmdate( 'd, d m y h:i:s' ) . ' gmt' );
228 header( 'cache-control: no-store, no-cache, must-revalidate' );
229 header( 'cache-control: post-check=0, pre-check=0', false );
230 header( 'pragma: no-cache' );
1. แล้วที่เครื่องตัวเอง localhost มันขึ้น error หรือเป่า
2. หรืออาจใช้ @ แก้ไปก่อน
joomla.php
697 @setcookie( $sessioncookiename, '-', false, '/' );
index.php
226 @header( 'expires: mon, 26 jul 1997 05:00:00 gmt' );
227 @header( 'last-modified: ' . gmdate( 'd, d m y h:i:s' ) . ' gmt' );
228 @header( 'cache-control: no-store, no-cache, must-revalidate' );
229 @header( 'cache-control: post-check=0, pre-check=0', false );
230 @header( 'pragma: no-cache' );
2. หรืออาจใช้ @ แก้ไปก่อน
joomla.php
697 @setcookie( $sessioncookiename, '-', false, '/' );
index.php
226 @header( 'expires: mon, 26 jul 1997 05:00:00 gmt' );
227 @header( 'last-modified: ' . gmdate( 'd, d m y h:i:s' ) . ' gmt' );
228 @header( 'cache-control: no-store, no-cache, must-revalidate' );
229 @header( 'cache-control: post-check=0, pre-check=0', false );
230 @header( 'pragma: no-cache' );
Comments
Post a Comment