Re: Warning: base64_decode() expects exactly 1 parameter, 2 given

  •  12-08-2009, 10:01 AM

    Re: Warning: base64_decode() expects exactly 1 parameter, 2 given

    Hi,
     
    That should be a PHP version issue.
     
    Before we fix the error , you can modify it by your self.
     
    Open CuteEditor_Files/Dialogs/phpuploader/include_phpuploader.php
     
    find this line
     
    $data=base64_decode($filedata,false);
     
    And change it to
     
    $data=base64_decode($filedata);
     
    Regards,
    Terry
     
View Complete Thread