[TYPO3-english] rsaauth problem in xampp
Krystian Szymukowicz
t33k at prolabium.com
Wed Feb 8 09:52:32 CET 2012
W dniu 2012-02-08 09:36, J. Bakshi wrote:
> On Tue, 7 Feb 2012 15:46:56 +0530
> "J. Bakshi"<joydeep at infoservices.in (জ বকসী)> wrote:
>
>> Dear list,
>>
>> A Window related typo3 issue. I have migrated a typo3 4.6.4 site on a XP box running xampp.
>> The FE is working well. But at BE I get the following error
>>
>> `````
>> No OpenSSL backend could be obtained for rsaauth.
>>
>> ``````
>>
>> Though at php.ini I have
>>
>> `````
>> extension=php_openssl.dll
>>
>> ` ` `
>>
>> and through phpinfo I can confirm openssl is active.
>>
>>
>> Also tried with
>>
>> ````
>> $TYPO3_CONF_VARS['BE']['loginSecurityLevel'] = 'normal';
>> `````
>>
>> but the same error
>>
>> Could anyone kindly suggest how to fix it ?
>>
>> Thanks
>
>
> Any clue please ?
I use rsaauth on DEV and LIVE and on my LOCAL xampp I deactivate that with:
unset($TYPO3_CONF_VARS['BE']['loginSecurityLevel']);
unset($TYPO3_CONF_VARS['FE']['loginSecurityLevel']);
$TYPO3_CONF_VARS['EXT']'extList']=
str_replace('rsaauth,','',$TYPO3_CONF_VARS['EXT']['extList']);
$TYPO3_CONF_VARS['EXT']['extList_FE'] =
str_replace('rsaauth,','',$TYPO3_CONF_VARS['EXT']['extList_FE']);
Put this lines at the end of typo3conf/localconf.php or preferably in
separate file like typo3conf/localconf_local.php, and include this file
from typo3conf/localconf.php
Be aware that you may need to enter "install tool / database comapre"
and set new admin password
And remember to activate rsaauth on LIVE which are ussually linux boxes
with no such problems as xampp/windows.
--
grtz
Krystian Szymukowicz
More information about the TYPO3-english
mailing list