[activecollab] Help with removing a nulled footprint

Whatthe?

Junior Member
Joined
Mar 22, 2010
Messages
124
Reaction score
35
Ok... I downloaded and installed a nullled version of activecollab. I did a a search for it on here, but nothing came up.

I would like to remove

Re-Nulled by FLIPMODE! - Nulled by Flintmax.

I was able to remove all of it from some of the tml files with Notepad++ and did a reinstall... but that didn't work. Could if be in the DB? I'm pretty lost how most of this stuff in PHP. If any one could point what I need to do next that would be great.

I like the script and plan on using it... but want that footprint gone.
 
Try to put this PHP code somewhere on top of every PHP file that is accessible.

PHP:
<?php
ob_start('my_ob');
function my_ob($buff) {
	$buff = str_replace('Re-Nulled by FLIPMODE! - Nulled by Flintmax.', '', $buff);
	return $buff;
}
?>
 
If you give me access to the files I can take a look.
 
Try to put this PHP code somewhere on top of every PHP file that is accessible.

PHP:
<?php
ob_start('my_ob');
function my_ob($buff) {
	$buff = str_replace('Re-Nulled by FLIPMODE! - Nulled by Flintmax.', '', $buff);
	return $buff;
}
?>
I searched for different way's and nothing came up.


If you give me access to the files I can take a look.

fatboy... if you could, that would be GREAT... you can find it here.

Code:
http://www.mediafire.com/?vxb0qcimmg26d1j
 
Back
Top