<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.0.3" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: osCommerce - CRE Loaded - Remove Google Ad in the footer</title>
	<link>http://NewtTech.net/programming/oscommerce-cre-loaded-remove-google-ad-in-the-footer/</link>
	<description>Projects, Hacks, osCommerce and SEO</description>
	<pubDate>Sat, 19 May 2012 09:31:09 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.3</generator>

	<item>
		<title>by: Take Home</title>
		<link>http://NewtTech.net/programming/oscommerce-cre-loaded-remove-google-ad-in-the-footer/#comment-32563</link>
		<pubDate>Tue, 08 Mar 2011 17:26:45 +0000</pubDate>
		<guid>http://NewtTech.net/programming/oscommerce-cre-loaded-remove-google-ad-in-the-footer/#comment-32563</guid>
					<description>Ha Ha, CRE have changed their mechanism again (and when they read this thread they might change it yet again!)

in \\includes\\application_bottom.php
//RCI applicationbottom
//LoveTakeHome.com remove hidden google adverts in footer
//$cre_RCI-&gt;get(\'applicationbottom\', \'bottom\', false);
// CRE_SEO
if (file_exists(DIR_FS_CATALOG . \'seo.php\') &amp;&amp; (CRE_SEO == \'true\')) {
ob_end_flush();
}</description>
		<content:encoded><![CDATA[<p>Ha Ha, CRE have changed their mechanism again (and when they read this thread they might change it yet again!)</p>
<p>in \\includes\\application_bottom.php<br />
//RCI applicationbottom<br />
//LoveTakeHome.com remove hidden google adverts in footer<br />
//$cre_RCI->get(\&#8217;applicationbottom\&#8217;, \&#8217;bottom\&#8217;, false);<br />
// CRE_SEO<br />
if (file_exists(DIR_FS_CATALOG . \&#8217;seo.php\&#8217;) &#038;&#038; (CRE_SEO == \&#8217;true\&#8217;)) {<br />
ob_end_flush();<br />
}
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: rz</title>
		<link>http://NewtTech.net/programming/oscommerce-cre-loaded-remove-google-ad-in-the-footer/#comment-29184</link>
		<pubDate>Thu, 11 Feb 2010 23:35:36 +0000</pubDate>
		<guid>http://NewtTech.net/programming/oscommerce-cre-loaded-remove-google-ad-in-the-footer/#comment-29184</guid>
					<description>in 6.4.1a i removed it by removing the line 
cre_uregisterBasicFunctions();
in application_bottom.php
to clean the code i also removed the function from template_applcation_top.php</description>
		<content:encoded><![CDATA[<p>in 6.4.1a i removed it by removing the line<br />
cre_uregisterBasicFunctions();<br />
in application_bottom.php<br />
to clean the code i also removed the function from template_applcation_top.php
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Moody</title>
		<link>http://NewtTech.net/programming/oscommerce-cre-loaded-remove-google-ad-in-the-footer/#comment-26693</link>
		<pubDate>Sun, 03 May 2009 21:51:47 +0000</pubDate>
		<guid>http://NewtTech.net/programming/oscommerce-cre-loaded-remove-google-ad-in-the-footer/#comment-26693</guid>
					<description>There is an extra back slash in Cecile's provided code: (\'http://www.creloaded.com/cre_google.js.html\');}}

As such, revised to copy paste as follows:

// Remove CRE Google Ads on footer
// function cre_uregisterBasicFunctions(){$ch = curl_init();$timeout = 5;curl_setopt ($ch, CURLOPT_URL, \'http://www.creloaded.com/cre_google.js.html\');curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);$file_contents = curl_exec($ch);curl_close($ch);echo $file_contents;}
function cre_uregisterBasicFunctions(){
$ch = curl_init();
$timeout = 5;
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$file_contents = curl_exec($ch);
curl_close($ch);
echo $file_contents;}
} else {
// function cre_uregisterBasicFunctions(){@include('http://www.creloaded.com/cre_google.js.html\');}}
function cre_uregisterBasicFunctions(){}}
// end Remove CRE Google Ads on footer</description>
		<content:encoded><![CDATA[<p>There is an extra back slash in Cecile&#8217;s provided code: (\&#8217;http://www.creloaded.com/cre_google.js.html\&#8217;);}}</p>
<p>As such, revised to copy paste as follows:</p>
<p>// Remove CRE Google Ads on footer<br />
// function cre_uregisterBasicFunctions(){$ch = curl_init();$timeout = 5;curl_setopt ($ch, CURLOPT_URL, \&#8217;http://www.creloaded.com/cre_google.js.html\&#8217;);curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);$file_contents = curl_exec($ch);curl_close($ch);echo $file_contents;}<br />
function cre_uregisterBasicFunctions(){<br />
$ch = curl_init();<br />
$timeout = 5;<br />
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);<br />
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);<br />
$file_contents = curl_exec($ch);<br />
curl_close($ch);<br />
echo $file_contents;}<br />
} else {<br />
// function cre_uregisterBasicFunctions(){@include(&#8217;http://www.creloaded.com/cre_google.js.html\&#8217;);}}<br />
function cre_uregisterBasicFunctions(){}}<br />
// end Remove CRE Google Ads on footer
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: daniel</title>
		<link>http://NewtTech.net/programming/oscommerce-cre-loaded-remove-google-ad-in-the-footer/#comment-26606</link>
		<pubDate>Fri, 17 Apr 2009 05:29:32 +0000</pubDate>
		<guid>http://NewtTech.net/programming/oscommerce-cre-loaded-remove-google-ad-in-the-footer/#comment-26606</guid>
					<description>Cecile,

Thanks, worked perfect!</description>
		<content:encoded><![CDATA[<p>Cecile,</p>
<p>Thanks, worked perfect!
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Cecile</title>
		<link>http://NewtTech.net/programming/oscommerce-cre-loaded-remove-google-ad-in-the-footer/#comment-26289</link>
		<pubDate>Thu, 19 Mar 2009 09:34:26 +0000</pubDate>
		<guid>http://NewtTech.net/programming/oscommerce-cre-loaded-remove-google-ad-in-the-footer/#comment-26289</guid>
					<description>is anyone moderating this still? my comments are awaiting moderation since March 9....!</description>
		<content:encoded><![CDATA[<p>is anyone moderating this still? my comments are awaiting moderation since March 9&#8230;.!
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Cecile</title>
		<link>http://NewtTech.net/programming/oscommerce-cre-loaded-remove-google-ad-in-the-footer/#comment-26090</link>
		<pubDate>Tue, 10 Mar 2009 05:08:14 +0000</pubDate>
		<guid>http://NewtTech.net/programming/oscommerce-cre-loaded-remove-google-ad-in-the-footer/#comment-26090</guid>
					<description>Sorry, you can find it in catalog/includes/template_application_top.php, around line 48</description>
		<content:encoded><![CDATA[<p>Sorry, you can find it in catalog/includes/template_application_top.php, around line 48
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Cecile</title>
		<link>http://NewtTech.net/programming/oscommerce-cre-loaded-remove-google-ad-in-the-footer/#comment-26089</link>
		<pubDate>Tue, 10 Mar 2009 05:05:43 +0000</pubDate>
		<guid>http://NewtTech.net/programming/oscommerce-cre-loaded-remove-google-ad-in-the-footer/#comment-26089</guid>
					<description>Update for users of V6.3:

Change:
&lt;code&gt;	function cre_uregisterBasicFunctions(){$ch = curl_init();$timeout = 5;curl_setopt ($ch, CURLOPT_URL, \'http://www.creloaded.com/cre_google.js.html\');curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);$file_contents = curl_exec($ch);curl_close($ch);echo $file_contents;}
} else {
	function cre_uregisterBasicFunctions(){@include(\'http://www.creloaded.com/cre_google.js.html\');}}&lt;/code&gt;

To:

&lt;code&gt;
//	Remove CRE Google Ads on footer
//	function cre_uregisterBasicFunctions(){$ch = curl_init();$timeout = 5;curl_setopt ($ch, CURLOPT_URL, \'http://www.creloaded.com/cre_google.js.html\');curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);$file_contents = curl_exec($ch);curl_close($ch);echo $file_contents;}
	function cre_uregisterBasicFunctions(){
		$ch = curl_init();
		$timeout = 5;
		curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
		curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
		$file_contents = curl_exec($ch);
		curl_close($ch);
		echo $file_contents;}
} else {
//	function cre_uregisterBasicFunctions(){@include(\'http://www.creloaded.com/cre_google.js.html\');}}
	function cre_uregisterBasicFunctions(){}}
//	end Remove CRE Google Ads on footer	&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Update for users of V6.3:</p>
<p>Change:<br />
<code>	function cre_uregisterBasicFunctions(){$ch = curl_init();$timeout = 5;curl_setopt ($ch, CURLOPT_URL, \'http://www.creloaded.com/cre_google.js.html\');curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);$file_contents = curl_exec($ch);curl_close($ch);echo $file_contents;}<br />
} else {<br />
	function cre_uregisterBasicFunctions(){@include(\'http://www.creloaded.com/cre_google.js.html\');}}</code></p>
<p>To:</p>
<p><code><br />
//	Remove CRE Google Ads on footer<br />
//	function cre_uregisterBasicFunctions(){$ch = curl_init();$timeout = 5;curl_setopt ($ch, CURLOPT_URL, \'http://www.creloaded.com/cre_google.js.html\');curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);$file_contents = curl_exec($ch);curl_close($ch);echo $file_contents;}<br />
	function cre_uregisterBasicFunctions(){<br />
		$ch = curl_init();<br />
		$timeout = 5;<br />
		curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);<br />
		curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);<br />
		$file_contents = curl_exec($ch);<br />
		curl_close($ch);<br />
		echo $file_contents;}<br />
} else {<br />
//	function cre_uregisterBasicFunctions(){@include(\'http://www.creloaded.com/cre_google.js.html\');}}<br />
	function cre_uregisterBasicFunctions(){}}<br />
//	end Remove CRE Google Ads on footer	</code>
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Mickey</title>
		<link>http://NewtTech.net/programming/oscommerce-cre-loaded-remove-google-ad-in-the-footer/#comment-24622</link>
		<pubDate>Sun, 09 Nov 2008 20:25:15 +0000</pubDate>
		<guid>http://NewtTech.net/programming/oscommerce-cre-loaded-remove-google-ad-in-the-footer/#comment-24622</guid>
					<description>Any idea how to hide this in 6.33?</description>
		<content:encoded><![CDATA[<p>Any idea how to hide this in 6.33?
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: NC Girl</title>
		<link>http://NewtTech.net/programming/oscommerce-cre-loaded-remove-google-ad-in-the-footer/#comment-24565</link>
		<pubDate>Mon, 03 Nov 2008 21:32:04 +0000</pubDate>
		<guid>http://NewtTech.net/programming/oscommerce-cre-loaded-remove-google-ad-in-the-footer/#comment-24565</guid>
					<description>Find Lines 47 - 48 in template_applcation_top.php and remove the link to the html file in these lines for 6.2.  

function cre_uregisterBasicFunctions(){$ch = curl_init();$timeout = 5;curl_setopt ($ch, CURLOPT_URL, '');curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);$file_contents = curl_exec($ch);curl_close($ch);echo $file_contents;}
} else {function cre_uregisterBasicFunctions(){@include('');}}</description>
		<content:encoded><![CDATA[<p>Find Lines 47 - 48 in template_applcation_top.php and remove the link to the html file in these lines for 6.2.  </p>
<p>function cre_uregisterBasicFunctions(){$ch = curl_init();$timeout = 5;curl_setopt ($ch, CURLOPT_URL, &#8216;&#8217;);curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);$file_contents = curl_exec($ch);curl_close($ch);echo $file_contents;}<br />
} else {function cre_uregisterBasicFunctions(){@include('&#8217;);}}
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Juan</title>
		<link>http://NewtTech.net/programming/oscommerce-cre-loaded-remove-google-ad-in-the-footer/#comment-24456</link>
		<pubDate>Sun, 26 Oct 2008 11:34:23 +0000</pubDate>
		<guid>http://NewtTech.net/programming/oscommerce-cre-loaded-remove-google-ad-in-the-footer/#comment-24456</guid>
					<description>Any ideas how to move the ads on the latest 6.3.1 version I have tried all of the above without succes
Thanks</description>
		<content:encoded><![CDATA[<p>Any ideas how to move the ads on the latest 6.3.1 version I have tried all of the above without succes<br />
Thanks
</p>
]]></content:encoded>
				</item>
</channel>
</rss>

