CodeIgniter Forums
base64_decode() has been disabled for security reasons - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: base64_decode() has been disabled for security reasons (/showthread.php?tid=56992)



base64_decode() has been disabled for security reasons - El Forum - 02-05-2013

[eluser]Unknown[/eluser]
my web hosting disable base64_decode for some security purposes, but i use codeigniter ad it uses base64_decode , what should i do now?


base64_decode() has been disabled for security reasons - El Forum - 02-05-2013

[eluser]Otemu[/eluser]
Hi,

Here some options for you:
Find a new host or maybe you can ask if there can enable it
Extend and override classes that use base64_decode within Codeigniter
Replace core classes with your own

I ran a seach using the word base64_decode, I only see it listed in the Encrypt library and Xmlrpc library so maybe you can just extend these helpers and put your own functionality there.

Hope that helps