jwzumwalt Posted January 10, 2013 Share Posted January 10, 2013 (edited) If you can't login and start getting an error similar to... PHP Warning: base64_decode() has been disabled for security reasons in .... /store/classes/Rijndael.php It is caused because your IP Provider has disabled the base64_decode() function in your server. They must remove the base64_decode string from the disable_functions in the php.ini* config file. I created this short PHP test program and put it in my store directory while they tried to fix the problem. <h2>Test Code For PHP base64_decode()</h2> If the base 64 function works properly, you should<br> see <i>"This is an encoded string"</i> printed out.<br> <br> You are attempting to run this code... <div style="background-color:#def; width: 450px; margin-left:25px;"> <xmp> error_reporting(E_ALL ^ E_NOTICE); ini_set('display_errors', '1'); $str = 'VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw=='; echo base64_decode($str); </xmp> </div> <?php error_reporting(E_ALL ^ E_NOTICE); ini_set('display_errors', '1'); $str = 'VGhpcyBpcyBhbiBlbmNvZGVkIHN0cmluZw=='; echo base64_decode($str); ?> Edited January 10, 2013 by jwzumwalt (see edit history) 1 Link to comment Share on other sites More sharing options...
Maunklana Posted May 26, 2014 Share Posted May 26, 2014 i have same problem and i report this to my hosting provider. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now