John,
I clicked the cbstarter extension remove button and was able to duplicate the log out "no user logged in" error however there was no problem logging back in for me.
The simplest solution may be to comment out everything in typo3conf/ext/cbstarter/scripts/localconf.php to disable the file entirely as shown below.
This prevents the "no user logged in" error on my end. I'd also be curious to see if this solves your issues with MW imagemap. I'll have more time to investigate MW imagemap this weekend and will report my results.
By commenting out all lines in cbstarter/scripts/localconf.php you still have the benefit of using the extension to edit and add additional extensions to the RealURL configuration file without having to directly alter typo3conf/localconf.php
For additional RealURL configuration options have a look at this thread here.
Gregory Remington
Mediatech Consulting, Inc.
Phone : +1 (760) 525-1770 . Fax: +1 (760) 542-1990 . Skype: gremington
typo3conf/ext/cbstarter/scripts/localconf.php
I clicked the cbstarter extension remove button and was able to duplicate the log out "no user logged in" error however there was no problem logging back in for me.
The simplest solution may be to comment out everything in typo3conf/ext/cbstarter/scripts/localconf.php to disable the file entirely as shown below.
This prevents the "no user logged in" error on my end. I'd also be curious to see if this solves your issues with MW imagemap. I'll have more time to investigate MW imagemap this weekend and will report my results.
By commenting out all lines in cbstarter/scripts/localconf.php you still have the benefit of using the extension to edit and add additional extensions to the RealURL configuration file without having to directly alter typo3conf/localconf.php
For additional RealURL configuration options have a look at this thread here.
Gregory Remington
Mediatech Consulting, Inc.
Phone : +1 (760) 525-1770 . Fax: +1 (760) 542-1990 . Skype: gremington
typo3conf/ext/cbstarter/scripts/localconf.php
<?php
/*
* localconf.php helper script
*
* Add the following to typo3conf/localconf.php
* require_once( 'ext/cbstarter/scripts/localconf.php' );
*
* @author Michael Cannon <michael@cannonbose.com>
* @version $Id: localconf.php,v 1.10 2007/06/06 16:31:33 cannon Exp $
*/
//$TYPO3_CONF_VARS['BE']['compressionLevel'] = '3';
//$TYPO3_CONF_VARS['BE']['fileCreateMask'] = '0664';
//$TYPO3_CONF_VARS['BE']['folderCreateMask'] = '0775';
//$TYPO3_CONF_VARS['BE']['forceCharset'] = 'utf-8';
//$TYPO3_CONF_VARS['BE']['lockIP'] = '0';
//$TYPO3_CONF_VARS['BE']['maxFileSize'] = '100000';
//$TYPO3_CONF_VARS['BE']['sessionTimeout'] = '32400';
//$TYPO3_CONF_VARS['BE']['trackBeUser'] = '1';
//$TYPO3_CONF_VARS['BE']['warning_email_addr'] = '';
//$TYPO3_CONF_VARS['BE']['warning_mode'] = '2';
//$TYPO3_CONF_VARS['FE']['lifetime'] = '32400';
//$TYPO3_CONF_VARS['FE']['lockIP'] = '0';
//$TYPO3_CONF_VARS['GFX']['enable_typo3temp_db_tracking'] = '1';
//$TYPO3_CONF_VARS['GFX']['png_truecolor'] = '1';
//$TYPO3_CONF_VARS['SYS']['curlUse'] = '1';
//$TYPO3_CONF_VARS['SYS']['ddmmyy'] = 'm/d/Y';
//$TYPO3_CONF_VARS['SYS']['displayErrors'] = '2';
//$TYPO3_CONF_VARS['SYS']['hhmm'] = 'g:i a';
//$TYPO3_CONF_VARS['SYS']['loginCopyrightShowVersion'] = '1';
//$TYPO3_CONF_VARS['SYS']['maxFileNameLength'] = '255';
//$TYPO3_CONF_VARS['SYS']['no_pconnect'] = 1;
//$TYPO3_CONF_VARS['SYS']['recursiveDomainSearch'] = '1';
//$TYPO3_CONF_VARS['SYS']['serverTimeZone'] = '0';
//$TYPO3_CONF_VARS['SYS']['textfile_ext'] = 'txt,pdf,html,htm,css,inc,php,php3,tmpl,js,sql';
//$TYPO3_CONF_VARS['SYS']['USdateFormat'] = '1';
//$TYPO3_CONF_VARS['FE']['pageNotFound_handling'] = 'false';
//$TYPO3_CONF_VARS["FE"]['pageNotFound_handling_statheader'] = 'HTTP/1.0 404 Not Found';
// MLC for multi-byte content
//$TYPO3_CONF_VARS['SYS']['multiplyDBfieldSize'] = '2';
// $TYPO3_CONF_VARS['SYS']['setDBinit'] = 'SET NAMES utf8;';
//$TYPO3_CONF_VARS['SYS']['setDBinit'] = 'SET NAMES utf8;'.chr(10).'SET CHARACTER SET utf8;'.chr(10).'SET SESSION character_set_server=utf8;' ;
// MLC 20070416 Examples
// $TYPO3_CONF_VARS['BE']['unzip_path'] = '/usr/bin/';
// $TYPO3_CONF_VARS['GFX']["im"] = '1';
// $TYPO3_CONF_VARS['GFX']["im_path_lzw"] = '/usr/bin/';
// $TYPO3_CONF_VARS['GFX']["im_path"] = '/usr/bin/';
// $TYPO3_CONF_VARS['GFX']['im_version_5'] = 'gm';
// $TYPO3_CONF_VARS['GFX']['TTFdpi'] = '96';
// $TYPO3_CONF_VARS['SYS']['binPath'] = '/usr/local/bin,/usr/bin';
// $TYPO3_CONF_VARS['SYS']['devIPmask'] = '192.168.*,127.0.0.1,71.255.125.178';
// $TYPO3_CONF_VARS['SYS']['loginCopyrightWarrantyProvider'] = 'Cannonbose, LLC';
// $TYPO3_CONF_VARS['SYS']['loginCopyrightWarrantyURL'] = 'http://www.cannonbose.com/typo3-support.html';
?>
/*
* localconf.php helper script
*
* Add the following to typo3conf/localconf.php
* require_once( 'ext/cbstarter/scripts/localconf.php' );
*
* @author Michael Cannon <michael@cannonbose.com>
* @version $Id: localconf.php,v 1.10 2007/06/06 16:31:33 cannon Exp $
*/
//$TYPO3_CONF_VARS['BE']['compressionLevel'] = '3';
//$TYPO3_CONF_VARS['BE']['fileCreateMask'] = '0664';
//$TYPO3_CONF_VARS['BE']['folderCreateMask'] = '0775';
//$TYPO3_CONF_VARS['BE']['forceCharset'] = 'utf-8';
//$TYPO3_CONF_VARS['BE']['lockIP'] = '0';
//$TYPO3_CONF_VARS['BE']['maxFileSize'] = '100000';
//$TYPO3_CONF_VARS['BE']['sessionTimeout'] = '32400';
//$TYPO3_CONF_VARS['BE']['trackBeUser'] = '1';
//$TYPO3_CONF_VARS['BE']['warning_email_addr'] = '';
//$TYPO3_CONF_VARS['BE']['warning_mode'] = '2';
//$TYPO3_CONF_VARS['FE']['lifetime'] = '32400';
//$TYPO3_CONF_VARS['FE']['lockIP'] = '0';
//$TYPO3_CONF_VARS['GFX']['enable_typo3temp_db_tracking'] = '1';
//$TYPO3_CONF_VARS['GFX']['png_truecolor'] = '1';
//$TYPO3_CONF_VARS['SYS']['curlUse'] = '1';
//$TYPO3_CONF_VARS['SYS']['ddmmyy'] = 'm/d/Y';
//$TYPO3_CONF_VARS['SYS']['displayErrors'] = '2';
//$TYPO3_CONF_VARS['SYS']['hhmm'] = 'g:i a';
//$TYPO3_CONF_VARS['SYS']['loginCopyrightShowVersion'] = '1';
//$TYPO3_CONF_VARS['SYS']['maxFileNameLength'] = '255';
//$TYPO3_CONF_VARS['SYS']['no_pconnect'] = 1;
//$TYPO3_CONF_VARS['SYS']['recursiveDomainSearch'] = '1';
//$TYPO3_CONF_VARS['SYS']['serverTimeZone'] = '0';
//$TYPO3_CONF_VARS['SYS']['textfile_ext'] = 'txt,pdf,html,htm,css,inc,php,php3,tmpl,js,sql';
//$TYPO3_CONF_VARS['SYS']['USdateFormat'] = '1';
//$TYPO3_CONF_VARS['FE']['pageNotFound_handling'] = 'false';
//$TYPO3_CONF_VARS["FE"]['pageNotFound_handling_statheader'] = 'HTTP/1.0 404 Not Found';
// MLC for multi-byte content
//$TYPO3_CONF_VARS['SYS']['multiplyDBfieldSize'] = '2';
// $TYPO3_CONF_VARS['SYS']['setDBinit'] = 'SET NAMES utf8;';
//$TYPO3_CONF_VARS['SYS']['setDBinit'] = 'SET NAMES utf8;'.chr(10).'SET CHARACTER SET utf8;'.chr(10).'SET SESSION character_set_server=utf8;' ;
// MLC 20070416 Examples
// $TYPO3_CONF_VARS['BE']['unzip_path'] = '/usr/bin/';
// $TYPO3_CONF_VARS['GFX']["im"] = '1';
// $TYPO3_CONF_VARS['GFX']["im_path_lzw"] = '/usr/bin/';
// $TYPO3_CONF_VARS['GFX']["im_path"] = '/usr/bin/';
// $TYPO3_CONF_VARS['GFX']['im_version_5'] = 'gm';
// $TYPO3_CONF_VARS['GFX']['TTFdpi'] = '96';
// $TYPO3_CONF_VARS['SYS']['binPath'] = '/usr/local/bin,/usr/bin';
// $TYPO3_CONF_VARS['SYS']['devIPmask'] = '192.168.*,127.0.0.1,71.255.125.178';
// $TYPO3_CONF_VARS['SYS']['loginCopyrightWarrantyProvider'] = 'Cannonbose, LLC';
// $TYPO3_CONF_VARS['SYS']['loginCopyrightWarrantyURL'] = 'http://www.cannonbose.com/typo3-support.html';
?>