SEOidiot

Follow me

Hello there

To me it looks like this may be your first time here. If you like why not Follow me.
You might also like to find out a bit more about me

Making your Serps more useful in FFox

May 20th, 2009

Went to see a mate of mine yesterday and was aware of the fact that they didn’t have an easy way to see where a site ranked in Google so thought id post my quick way of keeping track

Result Counter

100 Results

To use these just drag them onto your shortcut bar in FFox
So it looks like the image below…

2009-05-20_1133

Then to use – do a Google search and click 100 results followed by the Result counter
You are just a CTRL+F away from finding your position then :)



SEO for SMF Forums, Some simple hacks

July 30th, 2008

I have been doing some work over at my Affiliate Marketing Forum, Affearners. Minor tweaks really but I felt that they could be useful to anyone else with an SMF powered forum.

I would really like to spend some time ripping the whole thing to pieces as its all table driven and the code looks like someone threw it up, but instead of that mammoth task I did the lazy thing and tweaked it to get some benefits.

First off Affearners uses the SEO package created by Earl over at Syndk8 and I inherited that when I bought the forum. In my opinion it does a decent job of sorting the URL’s out but has some issues that perhaps newer packages dont (I dont wanna go through a complete URL migration so sod it it will do).

So first thing to sort is that the post pages dont even have a decent H1 title, so that should be easy to sort…

Open up dispaly.template.php (in your current forums theme folder) and change the following line: -
', $txt[118], ': ', $context['subject'], '  (', $txt[641], ' ', $context['num_views'], ' ', $txt[642], ')


And replace it with the following: -

', $context['subject'], '

Thats gotten rid of the crap we didn’t need in there and made the page title a nice H1.

Next the formatting may be a bit crappy for your forum so we may have to alter the CSS to sort that out. Heres what I did, open up style.css (Same folder as display.template above) and add this to the end of the stylesheet: -

/* seo hacks etc */

#top_subject h1 {
font-size: 16px;
line-height: 18px;
color: #ffffff;}

That just makes the title big but still fits in nice even if people do long stupid titles (Like I tend to ;) )

Thats it really, simple change really but I feel a lot happier about the what each page is saying about itself.



Adsense Tips – Greyscale sites convert better

July 5th, 2007

Carrying on down the idea that its good practice to make those ads stand out as the best option for your visitor to click on I have done many sites where i limit the colour on the page to only being the ad. The links are hidden, the page text is grey and the ads are black and blue, the classic recipe to see your CTR soar!

Heres an example image I just knocked up: -

[photopress:greyscalesite.jpg,full,pp_image]

Update – for Keemo – heres the source code for the above
<code>

<style type=”text/css”>
<!–
body {
color: #999999;
font-family: Arial, Helvetica, sans-serif;
font-size: 9px;
background-color: #666666;
}
a:link {
color: #666666;
text-decoration: none;
}
a:visited {
color: #666666;
text-decoration: none;
}
a:hover {
color: #666666;
text-decoration: none;
}
a:active {
color: #666666;
text-decoration: none;
}
.style1 {
font-family: Arial, Helvetica, sans-serif;
color: #FFFFFF;
}
.style2 {font-size: 9px}
td {
font-size: 11px;
}
–>
</style>

<table width=”800″ border=”0″ align=”center” cellpadding=”0″ cellspacing=”1″ bgcolor=”#333333″>
<tr>
<td bgcolor=”#FFFFFF”><table width=”100%” border=”0″ align=”center” cellpadding=”6″ cellspacing=”6″>
<tr bgcolor=”#CCCCCC”>
<td height=”80″ colspan=”2″><div align=”right”>
<h1 class=”style1″>Burglar Alarms </h1>
</div></td>
</tr>
<tr>
<td width=”300″ align=”center” valign=”top”>SHOVE 1 ADSENSE AD HERE</td>
<td width=”458″ height=”774″ valign=”top”>Burglar (or intrusion), fire and safety alarms are found in electronic form today. Sensors are connected to a control unit via either a low-voltage hardwire or narrowband RF signal, which is used to interact with a response device. The most common security sensors indicate the opening of a door or window or detect motion via passive infrared (PIR). In new construction systems are predominately hardwired for economy while in retrofits wireless systems may be more economical and certainly quicker to install. Some systems are dedicated to one mission, others handle fire, intrusion, and safety alarms simultaneously. Sophistication ranges from small, self-contained noisemakers, to complicated, multi-zoned systems with color-coded computer monitor outputs. Many of these concepts also apply to portable alarms for protecting cars, trucks or other vehicles and their contents (i.e., “car alarms”). See also fire alarm control panel for specific fire system issues. Burglar alarms are sometimes referred to as alarm systems, see burglar alarm control panel for a discussion of hard-wired burglar alarm system design.<br>
Burglar (or intrusion), fire and safety alarms are found in electronic form today.
<p>Sensors are connected to a control unit via either a low-voltage hardwire or narrowband RF signal, which is used to interact with a response device. The most common security sensors indicate the opening of a door or window or detect motion via passive infrared (PIR). In new construction systems are predominately hardwired for economy while in retrofits wireless systems may be more economical and certainly quicker to install. Some systems are dedicated to one mission, others handle fire, intrusion, and safety alarms simultaneously. Sophistication ranges from small, self-contained noisemakers, to complicated, multi-zoned systems with color-coded computer monitor outputs. Many of these concepts also apply to portable alarms for protecting cars, trucks or other vehicles and their contents (i.e., “car alarms”). See also fire alarm control panel for specific fire system issues. Burglar alarms are sometimes referred to as alarm systems, see burglar alarm control panel for a discussion of hard-wired burglar alarm system design.</p></td>
</tr>
<tr bgcolor=”#EAEAEA”>
<td height=”40″ colspan=”2″><div align=”right” class=”style2″>Blah Blah</div></td>
</tr>
</table></td>
</tr>
</table>

</code>



Adsense Tips – CSS links

July 1st, 2007

Ok so when you build or generate a page for Adsense and only for Adsense whats the aim of the page?

Click ! – Yup thats right you need the visitor to click and fuck off as soon as possible, whilst they are browsing they are eating bandwidth and the risk of them finding something useful to read is increasing.

Whats the best way to make sure that happens whilst remaining legal? What I do is make sure that my links arent easy to spot and i make sure that the ads are the brightest thing on the page.

More about making the ads stand out soon and more about making the page as dull as possible too but today we are just going to make the links dissapear via css.

I dont add navigation links in a list, mine are often just in the middle of the content and look like another paragraph of content. Heres the css I use to make them dissapear: -

<code>
<style type=”text/css”>
<!–
body {
color: #666666;
}
a:link {
color: #666666;
text-decoration: none;
}
a:visited {
color: #666666;
text-decoration: none;
}
a:hover {
color: #666666;
text-decoration: none;
}
a:active {
color: #666666;
text-decoration: none;
}
–>
</style>
</code>

More on why the text isnt black its dark grey another day but all your links have faded into the general content and your click happy visitor will be reading those ads with their finger on the money button :)



Hard disk test ’surprises’ Google

February 20th, 2007
Hard disk test ’surprises’ Google

The impact of heavy use and high temperatures on hard disk drive failure may be overstated, says a report by three Google engineers. The report examined 100,000 commercial hard drives, ranging from 80GB to 400GB in capacity, used at Google since 2001. The firm uses “off-the-shelf” drives to store cached web pages and services. “Our data indicate a much weaker correlation between utilisation levels and failures than previous work has suggested,” the authors noted.

A wide variety of manufacturers and models were included in the report, but a breakdown was not provided. Widely-held belief There is a widely held belief that hard disks which are subject to heavy use are more likely to fail than those used intermittently. It was also thought that hard drives preferred cool temperatures to hotter environments. The authors wrote: “We expected to notice a very strong and consistent correlation between high utilisation and higher failure rates. “However our results appear to paint a more complex picture. First, only very young and very old age groups appear to show the expected behaviour.” A hard disk was described as having “failed” if it needed to be replaced. The report was compiled by Eduardo Pinheiro, Wolf-Dietrich Weber and Luiz Andre Barroso, and was presented to a storage conference in California last week. In the report the authors said Google had developed an infrastructure which collected “vital information” about all of the firm’s systems every few minutes. ‘Essentially forever’ The firm then stores that information “essentially forever”. Google employs its own file system to organise the storage of data, using inexpensive commercially available hard drives rather than bespoke systems.
Lower temperatures are associated with higher failure rates
Google report
Hard drives less than three years old and used a lot are less likely to fail than similarly aged hard drives that are used infrequently, according to the report. “One possible explanation for this behaviour is the survival of the fittest theory,” said the authors, speculating that drives which failed early on in their lifetime had been removed from the overall sample leaving only the older, more robust units. The report said that there was a clear trend showing “that lower temperatures are associated with higher failure rates”. “Only at very high temperatures is there a slight reversal of this trend.” But hard drives which are three years old and older were more likely to suffer a failure when used in warmer environments. “This is a surprising result, which could indicate that data centre or server designers have more freedom than previously thought when setting operating temperatures for equipment containing disk drives,” said the authors. The report also looked at the impact of scan errors – problems found on the surface of a disc – on hard drive failure. “We find that the group of drives with scan errors are 10 times more likely to fail than the group with no errors,” said the authors. They added: “After the first scan error, drives are 39 times more likely to fail within 60 days than drives without scan errors.”


About SEOidiot

Hi my name is Paul Madden and I am a UK SEO based in Lancashire, for years I have been cursed by the nickname SEOidiot which started life as a form of abuse from someone but you need to decide for yourself how accurate the term is.

Quotes about me

"I'm pretty glad this man calls himself SEOIdiot, as it's the only way the competition gets some work sometimes too. He's far from it of course, rather an SEO Genius, but please don't tell him that."
Joost De Valk
Wordpress Guru and SEO expert
kerboo
  • About SEOidiot
  • Follow Me
  • Recommended Reading
  • SEO services

  • Tags


    Big List - Search Marketing Blogs


    02.08.10