Rapist of 11-year old girl supported by Gibo (or how to make effective Google ads)
0 comments Posted by Vincent Isles at Saturday, December 19, 2009While checking out my personal blog (yes, some, although not all, of those hits are mine), I was a bit surprised to see this Google AdSense ad at the bottom:The URL goes to MarkJiminez.com. (No, I did not click on the link. What I did was to right-click, copy the address, and look for the correct target URL at the end of the address - this way, I would not be committing click fraud.)
The ad, I would say, is an effective one. It catches one's attention right away, esp. if you are an avid supporter (or nonsupporter) of any of these three people (Manny Villar, Gibo, or Estrada).
Labels: google ads
Things you need to do to make WikkaWiki your content management system for your website:
1. Disable registration: in wikka.config.php change 'allow_user_registration' to '0'.
2. Change main_menu.inc and options_menu.inc - these files control how your header and footer menus (respectively) looks like.
My main_menu.inc contains only the following:
PageIndex
RecentChanges
RecentlyCommented
{{searchform}}
- I removed the categories link and the whoami bit.
My options_menu.inc contains the single bit [[UserSettings Login]] to show a login link.
Some notes on the use of WikkaWiki at 110mb.com (box 4) with htaccess support:
1. 110mb.com seems to not include in the unzipping the .htaccess files which is needed by WikkaWiki. You have to manually upload .htaccess files to the following directories:
templates/<template>/css
templates/<template>/images
images/
(If you use more than one template, you have to upload the default .htaccess files for each template folder. If your template uses JS files, include the templates/<template>/js folder.
The .htaccess files for these folders consists of the following lines:
<IfModule mod_rewrite.c>
RewriteEngine off
</IfModule>
UPDATE: To be able to see the editing buttons, also upload same htaccess file to /3rdparty/plugins/wikkaedit/
2. WikkaWiki will not be able to detect htaccess support upon installation. You have to select "Rewrite mode" yourself (check it) and change the "Base URL" yourself:In the Base URL, you have to remove "wikka.php?wakka=".
3. WikkaWiki's favicon could not be fixed by simply overwriting the favicon.ico file in the templates directory. The simplest way to fix this, in my opinion, is to just use an absolute URL for the href value in the shortcut icon link. You have to go to the templates folder and look for the header.php file. Change the following two lines:
<link rel="icon" href="<?php echo $this->GetThemePath('/') ?>/images/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="<?php echo $this->GetThemePath('/') ?>/images/favicon.ico" type="image/x-icon" />
into:
<link rel="icon" href="REPLACE_WITH_ABSOLUTE_URL" type="image/x-icon" />
<link rel="shortcut icon" href="REPLACE_WITH_ABSOLUTE_URL" type="image/x-icon" />
Thus mine looked like:
<link rel="icon" href="http://i793.photobucket.com/albums/yy212/islesv/islesv-1.png" type="image/x-icon" />
<link rel="shortcut icon" href="http://i793.photobucket.com/albums/yy212/islesv/islesv-1.png" type="image/x-icon" />
The PhotoBucket file is the same favicon for my personal blog at blog.islesv.net.

