I remember now just been on VM forum to remind myself!
You will need to get into file manager on your control panel at hosting, Do you have access?
You need to change the following.
Make sense? regards Pete
********************************
HOTFIX for Joomla! 1.0.13
********************************
This package contains a fix for the admin session problem in Joomla! 1.0.13
The file
/administrator/index2.php
in your Joomla! 1.0.13 installation needs to be replaced with the one from this package.
So just overwrite it and you're done.
Change:
BEFORE
########
103 doGzip();
104
105 // if task action is 'save' or 'apply' redo session check
106 if ( $task == 'save' || $task == 'apply' ) {
107 $mainframe->initSessionAdmin( $option, '' );
108 }
#########
AFTER
########
102 // if task action is 'save' or 'apply' redo session check
103 if ( $task == 'save' || $task == 'apply' ) {
104 $mainframe->initSessionAdmin( $option, '' );
105 }
106 doGzip();
########
Provided by soeren of the VirtueMart team (
http://virtuemart.net)