Posts

Showing posts with the label cracking sugarcrm logo

How to remove SugarCRM logo and keep it working

All, This is how to remove SugarCRM logo and keep the login page working and everything working. it is not only removing the SugarCRM logo , but replacing it with any image on your own and keep SugarCRM happy and does not feel anything. I'm posting this as I took it as a challenge once, and since it is open source the license is enough for me, no need to force me to have you logo. How it works: it is Simple, they hash EVERY file on the SUGARCRM folder, and they create on fly a has for every file and compare it with the original hashs. when the comparison fails, SugarCRM get stucked. Details are below: File Name&Path : include/utils/encryption_utils.php --> please modify the above file to have only the below lines function sugarEncode($key, $data){ return base64_encode($data); } function sugarDecode($key, $encoded){ $data = base64_decode($encoded); return $data; } _____ File Name & Path : modules/Administration/ updater_utils.php function check_now add exit; add the en...