Showing posts with label Joomla. Show all posts
Showing posts with label Joomla. Show all posts

Sunday, January 20, 2008

Free Google Analytics tracking module for Joomla! 1.5

Estimetemplates is proud to announce the release of the Joomla! 1.5 native version of the popular Google Analytics tracking module. The module also features new Google ga.ja trackingcode instead of the older urchin code.

Module can be downloaded from: www.estimetemplates.com or through Joomla! extensions:
http://extensions.joomla.org/component/option,com_mtree/task,viewlink/link_id,1233/Itemid,35/

source : http://www.joomla.org/content/view/4435/33/

VirtueMart "Session Expired" Fix

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.

103 doGzip();
105 // if task action is 'save' or 'apply' redo session check
106 if ( $task == 'save' || $task == 'apply' ) {
107 $mainframe->initSessionAdmin( $option, '' );
108 }

Change To :
102 // if task action is 'save' or 'apply' redo session check
103 if ( $task == 'save' || $task == 'apply' ) {
104 $mainframe->initSessionAdmin( $option, '' );
105 }
106 doGzip();