-
Another Way to add Adsense Code in phpBB3
Posted on April 6th, 2009 No commentsHi,
I found another easy way to include Google Adsense in phpBB3. The full details can be found at
http://www.binaryturf.com/how-to-add-adsense-to-phpbb3/
To include Google Adsense in header the steps are as follows;
Administration Control Panel> Style > Template > Edit Prosilver > Select overall_header.html
Find
Tip: This may be a partial find and not the whole line.Code:Select All
- Code: Select all
<a name="start_here"></a>
Add before
Tip: Add these lines on a new blank line before the preceding line(s) to find.- Code: Select all
<div class="adsense" style="width:728px;margin:auto;float:center">
<script type="text/javascript">
google_ad_client = "your-adsense-pub-id";
/* 728×90, created 9/31/08 */
google_ad_slot = "your-slot-id";
google_ad_width = 728;
google_ad_height = 90;</script>
<script type=”text/javascript”
src=”http://pagead2.googlesyndication.com/pagead/show_ads.js”>
</script>
</div>
——————————————————————————————————
To include at the footer of the forum the step are as follows:
Go to > Administration Control Panel> Style > Template > Edit Prosilver > Select overall_footer.html
Find
Tip: This may be a partial find and not the whole line.Code:Select All
- Code: Select all
</div>
Add after
Tip: Add these lines on a new blank line after the preceding line(s) to find.- Code: Select all
<div class="adsense" style="width:728px;margin:auto;float:center">
<script type="text/javascript">
google_ad_client = "your-adsense-pub-id";
/* 728×90, created 9/31/08 */
google_ad_slot = "your-slot-id";
google_ad_width = 728;
google_ad_height = 90;</script>
<script type=”text/javascript”
src=”http://pagead2.googlesyndication.com/pagead/show_ads.js”>
</script>
</div>
-
How to secure your Joomla version 1.5
Posted on April 6th, 2009 No commentsWant to make your joomla website much more secure? Any hackers can easily know whether you are using Joomla just by checking your page code or typing admin’s site access : http://www.domain.com/administator/
Plugin that you could use to make it harder to access your admin is Secure Authentication. The plugin page is stated below and to use the plugin is very simple and straight forward. Just follow the instruction and it is done.


