|
Tutorial Bug VirtualMart 'Session Expired' |
|
|
|
|
Written by Tutorial Joomla
|
VirtueMart is also affected by this bug. The problem is indeed a wrong order of the calls to initSessionAdmin and doGzip at the end of the file /administrator/index2.php.
Perhatikan baris ini 103 doGzip(); 105 // if task action is 'save' or 'apply' redo session check 106 if ( $task == 'save' || $task == 'apply' ) { 107 $mainframe->initSessionAdmin( $option, '' ); 108 } dirubah menjadi : 102 // if task action is 'save' or 'apply' redo session check 103 if ( $task == 'save' || $task == 'apply' ) { 104 $mainframe->initSessionAdmin( $option, '' ); 105 } 106 doGzip();
atau download file ini dan replace dengan /administrator/index2.php sukses, dan moga nda mengakibatkan error :P |