Promote your website to your link prospects

Create RSS feeds. Try registering with Feedburner

Publish free newsletters.Recruit site visitors to your free benefit-packed
 newsletter and you are building an emailing list. Use your newsletter to
 promote your content.

Post on your site/blog.You’re doing that anyway, of course. But it’s
amazing what people forget if it’s not on a checklist.

Submit content to generic social sites eg, Twitter, LinkedIn, Facebook,
StumbleUpon, Digg and nowGoogle +.

Submit to your specialist social networking sites

Use your specialist contacts by email, direct tweets and even telephone.

Contact journalists you know personally. Don’t just issue press releases
 - get to know them, chat and build trust.

Buy and use a list of relevant journalists detailsand get to know them.

Contribute with guest posts and articleson specialist blogs and sites.

Issue press releases to online and offline specialist distributors like
 PRWeband Press Dispensary.

Submit to site-of-the-day sites.

Consider Eric Ward’s URL wireIt’s a paid-for service but is top quality.

Buy PageRank links or not. You can buy links without a nofollow tag. But, if Google works out
that you’re buying links you’re site may be penalized. Take the risk if you must, but I certainly don’t
recommend it.
Buy promotional links adverts on generic sites like StumbleUpon and Facebook; specialist sites;
and Pay Per Click -PPC. The links won’t directly help your SEO but others might share your content
and those links will.

You have found your site’s most profitable keyword niches to target; built
and optimized site structure and content; and promoted your site for link
building and brand building.

But SEO never stops. Your competitors will not stop optimizing, so nor
can you. And your best targets may have changed. So you must return to
the start of the SEO process.

Check visits, Google ranks for target keywords, response rates and
numbers for different metrics including goals like email recruitment,
sales numbers and revenue.

Check whatever measures you’ve got. If you don’t have Goals or
Ecommerce configured then use bounce rate, average time on site and
pages per visit.

Visualize Traffic with DIY Vector

you will learn how to create your own traffic chart using the incredibly cool Canvas framework, which can produce vector graphics and animations with a little bit of HTML and JavaScript. All code referenced in this hack is also available in a single zip file at http://blogoscoped.com/googleappshacks/canvas.zip. Although setting up Canvas may take a little longer than using, say, the Google Charts API  it's also much more flexible, and can even include animated charts.

Draw Something Using Canvas

Canvas is a vector graphics framework which works in most popular browsers today including Firefox, Opera and Safari, and does not require a plug-in like Flash does. Internet Explorer too can render Canvas code, at least with a little tweak you'll see further below. Canvas can be used to have a web page show 2D and 3D drawings, games, charts, applications, animations, and much more.

A longer canvas tutorial is available at http://developer.mozilla.org/en/docs/Canvas_tutorial (explaining how to draw rectangles, curves, imported images, and much more), but let's just see what you need to draw a simple line. First, create a file named index.html and open it with a plain text editor. Create a basic page like the following;

 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; CHARSET=UTF-8" />
  <title>Drawing a line</title>
</head>
<body>
  <h1>Soon, a line will appear!</h1>
</body>
</html>

       

So far, that's all plain XHTML. Now somewhere in the <body> of the page, put the canvas tag:

Next, create a default.js file containing the following JavaScript, and put it in the same folder as index.html:
function main() {
    // grab the canvas
    var canvas = document.getElementById('picture');
    var ctx = canvas.getContext('2d');

    // set the color and line width
    ctx.strokeStyle = 'rgba(40,200,180,1)';
    ctx.lineWidth = 8;

    // draw a line
    ctx.beginPath();
    ctx.moveTo(40, 140);
    ctx.lineTo(240, 40);
    ctx.stroke();
}

That's not a lot of code—you're grabbing the canvas element using the ID you defined

Top Web Analytics Blogs

The Web changes all the time, and those changes create pain points on how
 best to accurately and consistently analyze our websites. One of the most
awesome resources at your disposal is the blogs of various industry luminaries
 and practitioners who unselfishly put out some of the best content
you’ll find anywhere. A key characteristic of most of these blogs is
 that they are extremely current and on the cutting edge in their discussions.
 Get an RSS -really simple syndication reader and
soak up all the information—it’s free!
Google Analytics Blog-http://analytics.blogspot.com:This official blog
 of the GA
team has loads of great GA tips and insights.
Occam’s Razor-http://www.kaushik.net/avinash: My blog focuses on web
 research and analytics.
Web Analytics Demystified-http://www.webanalyticsdemystified.com/weblog: Eric
Peterson is an author, conference speaker, and Visual Sciences VP, and on his
blog he shares his wisdom about all things web analytics.

Lies, Damned Lies-http://www.liesdamnedlies.com:
Ian Thomas is the Director of Customer Intelligence at Microsoft, and in
 a prior life helped found WebAbacus, a web analytics company.
Ian applies his deep experience and covers complex topics in
an easy-to-understand language.
Analytics Talk-http://epikone.com/blog: Justin Cutroni is one of the smartest
 web analytics practitioners and consultants around. His focus is on GA, but
he has lots of non-GA stuff as well.

Commerce360 Blog-http://blogs.commerce360.com: Craig Danuloff is the
 president of Commerce360, a consulting company, and he brings a
refreshingly honest perspective on all things web analytics and marketing.

LunaMetrics Blog-http://lunametrics.blogspot.com: Robbin Steif provides practical
tips and tricks on getting the most out of your web analytics tools, specifically
 with an eye toward improving your conversion rate.

Instant Cognition-http://blog.instantcognition.com: Clint Ivy calls himself a data
visualization journeyman—that says it all! Clint shares his perspective on
 analytics with a focus on visual report design.

Applied Insights Blog-http://snipurl.com/neilmason: Neil Mason and John
 McConnell share their insights from the United Kingdom.

OX2 Blog-http://webanalytics.wordpress.com: René Dechamps Otamendi
 and Aurélie Pols run the pan-European OX2, and their blog always
has wonderfully insightful perspectives on web analytics.

Let's Make A Master Template codeigniter

A simple CSS file, it ’ s time to create a generic Template view that
you can reuse throughout your application. In this master template, which
you can name template.php, are a series of embedded PHP calls that load
certain subviews, such as header, navigation, and footer.

These subviews contain the HTML and PHP that you will create in the
 next few sections. Notice in the following code that you ’ re also trying
to load a subview with $main. This variable will contain the name of a
subview that is dynamically set within the controller and allows you a
 great deal of flexibility as you code your application.

< !DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN”
“http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd” >
< html xmlns=”http://www.w3.org/1999/xhtml” xml:lang=”en” lang=”en” >
< head >
< meta http-equiv=”content-type” content=”text/html; charset=utf-8” / >
< title > < ?php echo $title; ? > < /title >
< link href=” < ?= base_url();? > css/default.css” rel=”stylesheet” type=”text/css” / >
< script type=”text/javascript” >
// < ![CDATA[
base_url = ‘ < ?= base_url();? > ’;
//]] >
< /script >
< /head >
< body >
< div id=”wrapper” >
< div id=”header” >
< ?php $this- > load- > view(‘header’);? >
< /div >
< div id=”nav” >
< ?php $this- > load- > view(‘navigation’);? >
< /div >
< div id=”main” >
< ?php $this- > load- > view($main);? >
< /div >
< div id=”footer” >
< ?php $this- > load- > view(‘footer’);? >
< /div >
< /div >
< /body >
< /html >

Social Search and Participation Marketing

 Social search optimization

There are two reactions we get when we tell our clients that it’s time
 to think aboutsocial search. The B2B clients often become noticeably
 uncomfortable and try to change the subject, while the B2C clients are
 likely to want to dive right in. Want to know something funny?In most cases,
 these reactions hold true even when our B2B and B2C clients have no idea
 what we actually mean by social search. What we mean,by the way, are
 those Web 2.0 sites that compile human-fueled factors, such as votes,
references, or recommendations to help you find sites.

Social Bookmarking Sites  These are sites that allow users to give a virtual thumbs
up to a web page, which in turn allows others to learn about it. Digg, Reddit, and
del.icio.us are popular examples. As an online marketer, your goal on sites like these is
to get votes for your content. Is your organization doing something fascinating enough,
or does your website offer something so unique or so useful that a rising tide of voters
will push your site to the top.

Blogs- Your blog mission is either to get mentioned or to join in the commenting in a
way that showcases your smarts and usefulness to your target audience. Niche B2Bs,
yes, there is a blog that is at least loosely related to your industry, and yes, your target
audience frequents them. Type your top 10 keywords into blogsearch.google.comand
see for yourself. B2Cs, even though your keywords are mentioned all over the blog
search engines, that doesn’t mean that every blog audience has conversion value for you.
Forums-The goal for forums is to join in the conversation, become a trusted voice, and
keep your organization in that favorable top-of-mind position with your target audience.
Social Networking Sites Not a medium for the time-strapped, the goal for these sites is
to make friends and communicate with them on a regular basis. Some examples of social
networking sites are MySpace, Facebook, and LinkedIn.

The exciting thing about the Social Web is that the barrier to entry is low. It’s easy to participate
and easy to operate, and it doesn’t cost any money. But it does require a bit of reprogramming for
the traditional marketer. Instead of promoting your company or products, often the venue is better
suited to disseminating the thoughts or activities of a single individual in your organization. As an
example, new product announcements in the Social Web are far outnumbered by musings, advice,
and opinions of CEOs and consultants.Which participants rise to the top?
 Those with higher-thanaverage quotients of expertise and personality.

How to make seo worksheets

SEO worksheets Idea

• Keywords Worksheet
• Site Assessment Worksheet
• Rank Tracking Worksheet
• Task Journal Worksheet
• Competition Worksheet
• SEO Growth Worksheet

Your SEO Task Journal is a place to document
what you’ve done, what questions have cropped up, and what you need to do in the
future. Your Task Journal will prevent you from duplicating your efforts and help you
keep track of what you were thinking last week and the week before. It’s also a convenient holding pen for ideas and random thoughts that come up while you are working on Your SEO Plan.

 If you put the time into choosing powerful keywords now, you are likely to be
 rewarded not only with higher ranks,but also with these benefits:

• A well-optimized site, because your writers and other content producers will feel
more comfortable working with well-chosen keywords as they add new site text
• More click-throughs once searchers see your listing, because your keywords will
be highly relevant to your site’s content
• More conversions once your visitors come to your site, because the right keywords
will help you attract a more targeted audience.

Keywords Worksheet, you’ll find columns with the headings Keyword,
Search Popularity, Relevance, Competition, and Landing Page. Today you’re only
worried about the first column: Keyword.

No keyword list is complete without your
organization’s name and the products, services, or information you offer. Be sure to
think about generic andproprietary descriptions.

On your Keywords Worksheet, you already have a nice long list of possible target phrases.
But are there any you missed? Today, you’ll troll on- and offline for additional keyword
ideas. We’ve listed some of the places that additional keyword phrase ideas could pop
up. There are more ideas here than you can use in just one hour, so pick and choose
based on what’s available to you and what feels most appropriate to your situation:

Your CoworkersIf you didn’t get your team involved in keyword brainstorming  be sure
that they jump on board today. It will help your campaign in two ways:
First, they’ll provide valuable new perspectives and ideas for keywords, and second,
they’ll feel involved and empowered as participants in the plan.

Your WebsiteHave you looked through your website to find all variations of your
possible keyword phrases? Terms that are already used on your site are great choices
for target keywords because they will be easier to incorporate into your content.

URL rewriting-various exercises-seo

 Installing mod_rewrite
 Testing mod_rewrite
 Working with regular expressions
 Rewriting numeric URLs with two parameters
 Rewriting keyword-rich URLs
 Building a link factory
 Pagination and URL rewriting
 Rewriting images and streams

If you’ve installed Apache yourself, read on. Because of its popularity, mod_rewrite is now included
with all common Apache distributions. If desired, you can verify if your Apache installation has the
mod_rewrite module by looking for a file named mod_rewrite.sounder the modulesfolder in your
Apache installation directory.
However, mod_rewrite may not be enabled by default in your Apache configuration. To make sure,
open the Apache configuration file, named httpd.conf.

Once mod_rewrite is installed and enabled, you add the rewriting rules to the Apache configuration
file, httpd.conf.

You use this to have mod_rewrite translate my-super-product.htmlto product.php?product_id=123.
The linethat precedes the RewriteRuleline is a comment.
# Translate my-super.product.html to /product.php?product_id=123
RewriteRule ^my-super-product\.html$ /product.php?product_id=123
You can find the official documentation for RewriteRuleat http://www.apacheref.com/
ref/mod_rewrite/RewriteRule.html.
In its basic form, RewriteRuletakes two parameters. The first parameter describesthe original URL that
needs to be rewritten, and the second specifies what it should be rewritten to. The pattern that describes the
original URL is delimited by ^and $, which assert that the string has nothing before or after the matching
text (explained further in the following sections), and its contents are written using regular expressions,
which you learn about next.

Using RewriteBase

The regular expressions and scripts in this book assume that your application runs in
the root folder of their domain. This is the typical scenario. If, however, you host your
application in a subfolder of your domain, such as
http://www.example.com/seophp, you’d need to make a few changes to accommodate 
the new environment.

The most important change would be to use the RewriteBasedirective of mod_rewrite
to specify the new location to act as a root of your rewriting rules. This directive is
explained at http://www.apacheref.com/ref/mod_rewrite/RewriteBase.html.
Also, the rewritten URL should lose its leading slash, because you’re not rewriting to
root any more. Basically, if you host your first example in a subfolder named seophp,
your .htaccessfile for the previous exercise should look like this:

RewriteEngine On
RewriteBase /seophp
RewriteRule ^my-super-product\.html$ product.php?product_id=123

RewriteRule command and its parameters must be written on a single line in
your .htaccessfile. If you split it in two lines as printed in the book, you’ll get a 500 error from the
web server when trying to load scripts from that folder.

How to Enable mod_rewrite at Server

mod_rewrite may not be enabled by default in your Apache configuration. To make sure,
open the Apache configuration file, named httpd.conf.
The full path of the file will be \Program Files\xampp\apache\conf\httpd.conf.

Open httpd.conf and find the following line:
#LoadModule rewrite_module modules/mod_rewrite.so
The leading #means the line is commented, so remove it in order to have Apache load the mod_rewrite
module upon its startup:

LoadModule rewrite_module modules/mod_rewrite.so

After any change to httpd.conf, you need to restart the Apache server in order for the changes to take
effect. In case you run into trouble, you can check Apache’s error log file /logs/error.log, which
should contain the details of the error.

Once mod_rewrite is installed and enabled, you add the rewriting rules to the Apache configuration
file, httpd.conf. Apache also lets you save configuration options (including rewriting rules) on a
per-directory basis to a configuration file named .htaccess. All you have to do is create a file named
.htaccessinto a directory of your application.

Web Hosting or DNS

It is common sense that if a web site is down it cannot get spidered, but we’ll state it regardless:
When a site is down, it cannot get spidered.And when your domain’s designated DNS is down, your
site cannot get spidered either — even if your web server is up. Reliable hosting and DNS, then, is
critical to your web site’s well-being. A web site that is down will irritate users and result directly
in fewer users visiting your web site. It may also reflect badly on your business, and users may not
be back. Likewise, if a search engine spider visits your web site and it does not respond after quite
a few unsuccessful attempts, it may result in your web site getting dropped from the index. For
this reason we recommend cutting costs elsewhere.

Most of the time, users opt to use a web hosting provider’s DNS. This may be wise, because they may
need to alter DNS records in order to move you to another server with another IP if the server your
web site is located on fails. However, domain providers (Network Solutions, GoDaddy, and so on)
have more recently begun to offer free managed DNS services as well. If you use managed DNS,
the hosting provider will not be able to change your domain’s records to reflect the new IP, and
your site will be down as a result. For this reason, we do not recommend using managed DNS
unless your provider is aware of it, and knows to notify you, so that you can change the records
yourself to reflect the new IP.

Hosting Providers

Should the need exist to change hosting providers, the process must be completed in the proper order.
Not doing so may result in a time window where your site is unreachable; and this is clearly not desirable,
from both a general and SEO perspective. The focus of this elaborate process is to prevent both users and
search engines from perceiving that the site is gone — or in the case of virtual hosting, possibly seeing the
wrong site.
Virtual hosting means that more than one web site is hosted on one IP. This is commonplace,
because the world would run out of IPs very quickly if every web site had its own IP. The problem
arises when you cancel service at your old web hosting provider and a spider still thinks your site
is located at the old IP. In this case, it may see the wrong site or get a 404 error; and as you suspect,
this is not desirable.
The proper approach involves having your site hosted at both hosting providers for a little while. When
your site is 100% functional at the new hosting provider, DNS records should then be updated.

Functionality was also used to set up the seophp.example.comdomain. On Windows machines,
the file is located in C:\WINDOWS\system32\drivers\etc\hosts.
Add the following lines:
xxx.xxx.xxx.xxx www.yourdomain.com
xxx.xxx.xxx.xxx yourdomain.com
This will let you access your web site at the new provider as if the DNS changes were already reflected.
Simply remove the lines after you are done setting up the site on the new web hosting provider’s server
to verify the changes have actually propagated.
If you have concerns about this procedure, or you need help, you may want to contact your new hosting
provider and ask for assistance. Explain your concerns, and hopefully they will be able to accommodate
you and put your mind at ease. If they are willing to work with you, it is a good indication that they are
a good hosting provider.

MSN Search has a useful feature that allows you to see all virtual hosts on one IP by the syntax of
IP:xxx.xxx.xxx.xxx. Multiple statements can be separated by ORto request a list of a range of IPs.
This lets you see who else is hosting in a range. Spam tends to travel in packs. Search engine algorithms are also aware of this. The fact that the operator exists may be a tacit admission by Microsoft
that it does examine the sites in an IP range for some reason.

what is CodeIgniter Helpers?

Helpers, as their name implies, help you with specific tasks. Unlike libraries, helpers are not object -oriented but procedural in nature. Each helper contains one or more functions, each focusing on a
specific task, with zero dependence on other functions.

Helpers can either be loaded locally or autoloaded in /system/application/config/autoload.php.

CodeIgniter's  helpers:

Array —  The   Array helpercontains functions that help you work with arrays. For example, the
random_element()function takes an array as input and returns a random element from it.

Cookie —  The   Cookie helpercontains functions that help you set, read, and delete cookie data.

Date —  The   Date helpercontains functions that help you work with dates. For example, the
now function returns the current time as a UNIX time stamp.

Directory —  The   Directory helpercontains a single function that helps you work with directories.
For example, the directory_mapfunction reads a specified directory path and builds an array
of it that contains all of its files and subdirectories.


Download —  The   Download helpercontains a single function that helps you download data
easily. The force_download()function generates server headers that force data to be
downloaded instead of viewed in a browser.

File —  The   File helpercontains functions that help you read, write, and delete files.

Form —  The   Form helpercontains functions that help you build forms. It is probably one of the
most used helpers in the CodeIgniter toolbox.

HTML —  The   HTML helpercontains functions that help you create HTML blocks quickly and
easily. For example, the ul()function can turn an array of items into a bulleted list.

Inflector —  The   Inflector helpercontains functions that help you to turn words into plural or
singular form, to apply camel case, or to turn words separated by spaces into an underscored
phrase.

Security —  The   Security helpercontains security - related functions like xss_clean(),  which
filters out any code that may be used in a cross site scripting hack.

Smiley —  The   Smiley helpercontains functions that help you manage emoticons. The functions
in this helper might seem superfluous, but become invaluable if you are coding a bulletin board
or chat application.

String —  The   String helpercontains functions that help you work with strings, like the random_
string  function, which as its name implies, creates random strings based on type and length
arguments.

Text —  The   Text helpercontains functions that help you work with text. For example, the word_
limiter function can limit a string to a certain number of words, which is useful if you ’ re
trying to limit user input on a form.

Typography —  The   Typography helpercontains a single function that helps you format text in
appropriate ways. For example, the auto_typography()function wraps paragraphs with < p >
and < /p > , converts line breaks to < br/ > , and converts quotes, dashes, and ellipses properly.

PHP, you can use the substr()function instead of the word_limiter or character_limiter
made available by the Text helper. Certainly, you ’ re not forced to use helpers, but they ’ re made available
to you, and they do a fine job of saving time and effort.