eire web design home page contact eire-web design eire web design and development site map
stepping on in business
• Welcome to Eire Web Design Ireland

Archive for the ‘SEO’ Category

Geansai Gorm – Who’s the best Irish SEO…

Thursday, October 30th, 2008

Geansai Gorm – This is going to be some fun…geansai-gorm-blue-jumper

Damien Mulley with some feedback from Cormac & Richard announced a new competition to find the “Greatest SEO of them all” available only for Irish individuals and Irish business, but read on because there are a few rules that can not be broken:

Criteria:

1. Entries open to all Irish individuals and Irish businesses.
2. Search is to be performed on www.google.ie without Pages From Ireland selected, with personalisation off and from an Irish IP address.
3. The domain to rank must be a new domain. Must not contain the keywords in the domain name at all and no ccTLD domains are to be used.
4. Only want the homepage to rank, not other non-useful pages.
5. 301 redirects are not permitted.
6. Keywords as gaeilge (Geansai Gorm) instead of English but copy can be in English

So lets find out who’s the best spammer on this…
As I said is just for fun so please don’t go over board…

More about this competition can be found here >>

and to ad on this post, Blacknight (web hosting provider) are now sponsoring the competition.

Search Engine Optimization Techniques

Thursday, September 25th, 2008

We’ve recently writen a Search Engine Optimization White Paper.

The articles are aimed at website owners with less experience in the search engine optimization field, helping them understand the work involved in achieving a higher search engine ranking, but it can also be useful to anyone looking for a quick reference, so feel free to take a read.

The White Paper can be found on our sister website www.eireseo.ie -  Search Engine Optimization Tutorials & Techniques

Search Engines Optimization – Google Recommendations?

Sunday, July 6th, 2008

Google has just release the new Search Engine Optimization tips and advice for choosing the right SEO company.

The article can be found here:
What’s an SEO? Does Google recommend working with companies that offer to make my site Google-friendly?

Right after the new content, Google is asking other SEO’s for tips: Webmaster Central Blog

What I love about this is the fact that everyone is saying similar things that can be easily found on the Internet, while others warns website owners not to give FTP details or allow the SEO to modify pages but do it yourself.

While that’s alright in some cases, many website owners does not know  what FTP is, and probably hasn’t got a clue which page does what…., so how exactly can this be done?
I believe in trust, and if you are out there looking for a SEO Company, but you cann’t trust anyone, than go to www.amazon.com, get yourself few SEO books, study and go for DIY.

It shouldn’t be that hard to realise, while talking to a SEO, that he/she might have a clue and things that are being said should make sense. If in doubt, you can always pop-in the Irish Webmaster Forum and ask.
There is a section there totally dedicated to SEO, and while advices is being given to you, take what you thing is right and ask more question if is too hard to understand…

Search Engine Submission – Directory Self-Submission Service

Monday, May 12th, 2008

Semi-Automated Directory Submission Service.

What is it?
Many website owners spend a lot of time to get their website into the Search Engines, and the first step to do so is to submit it to directories.
This way Search Engines can find it and index it, but this type of work is time consuming and many give up after a while.
Is not easy to find these directories and even after that you have to type everything (website title, description, URL, email, name, etc) over and over again.

With our program, you don’t have to do that anymore.
All you have to do is enter all this data just once.
Even Better, we allow you to enter up to 5 website TITLES and 5 DESCRIPTIONS, which at the time of submission they are automatically picked at random so it doesn’t look like directory spamming.
We took the hard work away from you, found these directories and with just a few clicks you can have your website submitted to 100 directories in less than an hour.

Try it for yourself. Register today, using the form above and take the system for a spin.
We even allow you 100 Free submissions per URL to prove the system works.

Does submitting to directories help?

Of course it does. “Build it and they will come” – a very old and very true saying, but it doesn’t work on the Internet.
To be found on the Internet you have to be indexed in the major search engines like Google, Yahoo, MSN, etc…
Directory submission brings back-links to your website and back links are and will be for ever good.

How much does it cost?

The first 100 submissions per URL are FREE.
If you like the system and decide to submit more, the charges are as follows:

€20.00 per month or
€199.00 per year.

For these prices there are no limits to how many websites you can register and no limits to how many directories you can submit to.
At this time we have over 4000 directories available for you to submit to…

Sitemap generator class

Thursday, February 21st, 2008

This php class will help you generate a sitemap for your website automatically.

// sitemap generator class
class Sitemap{  // constructor receives the list of URLs to include in the sitemap  

  function Sitemap($items = array()){  

    $this->_items = $items;  

  } // add a new sitemap item  

  function addItem($url, $lastmod = '', $changefreq = '', $priority = '', $additional_fields = array()){  

  $this->_items[] = array_merge(array('loc' => $url, 'lastmod' => $lastmod,'changefreq' => $changefreq,'priority' => $priority), $additional_fields);  

  }  

// get Google sitemap  

  function getGoogle(){  

    ob_start();  

    header('Content-type: text/xml');  

    echo '';  

    echo '';  

  foreach ($this->_items as $i){  

      echo '';  

  foreach ($i as $index => $_i){  

        if (!$_i) continue;  

  echo "<$index>" . $this->_escapeXML($_i) . "";  

      }  

      echo '';  

    }  

    echo '';  

    return ob_get_clean();  

  }  

// get Yahoo sitemap  

 function getYahoo(){  

 	ob_start();  

 	header('Content-type: text/plain');  

  foreach ($this->_items as $i){  

 		  echo $i['loc'] . "\n";  

 		}  

 	return ob_get_clean();  

 }  

// escape string characters for inclusion in XML structure  

 function _escapeXML($str){  

 	$translation = get_html_translation_table(HTML_ENTITIES, ENT_QUOTES);  

  foreach ($translation as $key => $value){  

  $translation[$key] = '&#' . ord($key) . ';';  

 		}  

  $translation[chr(38)] = '&';  

  return preg_replace("/&(?![A-Za-z]{0,4}\w{2,3};|#[0-9]{2,3};)/","&" , strtr($str, $translation));  

 }  

}

Usage:

$s = new Sitemap(); 
 $s->addItem("http://www.websiteurl.com", date("Y-m-d"), 'weekly', '1.0');  

 $s->addItem("http://www.websiteurl.com/link2", date("Y-m-d"), 'weekly', '1.0');  

 $s->addItem("http://www.websiteurl.com/link3", date("Y-m-d"), 'weekly', '1.0');

This class can create two type of sitemaps for you – XML for Google and TEXT for Yahoo

if(isset($_GET['target'])){  

  if(($target = $_GET['target']) == 'google'){  

  echo $s->getGoogle();//xml sitemap  

  }elseif($target == 'yahoo'){  

  echo $s->getYahoo();//txt sitemap  

  }  

}

This class wasn’t designed by me but by Jaimie Sirovich & Cristian Darie and the reason I put it up here is to help others that are trying to get this done without the headache of creating a new code.

Links...

Chicklets...
  • http://www.eire-webdesign.ie/blog/feed/
    http://www.eire-webdesign.ie/blog/feed/
    Google Reader or Homepage
    Add to My Yahoo!
    Subscribe with Bloglines
    Subscribe in NewsGator Online
    add to msn
    Add to My AOL
    Add to Technorati Favorites!
    pageflakes
    windows live