Archive for the 'Webmasters' Category
Posted by admin on 7th, 2007
If you guys wanted to remove the Blogger Nav Bar from you website you can always hide it.
Goto the html view of your blogspot template and paste the below code on top of
/* Variable definitions
#navbar-iframe {
display: none !important;
}
This will remove the Blogspot navbar
Tags :How to remove Navbar from Blogspot or blogger, Remove Blogspot navbarIf you Like this post buy me a CoffeePopularity: 3% [?]
Posted by admin on 4th, 2007
Orkut has come up with feeds. You can submit you blog/ website feed to orkut.Just Goto edit your feeds.There you can add you website feeds. I guess this is a good way to drive in some traffic from orkut.
The Below Image Shows the Feed Page of Justascrap.com in Orkut

Tags :No TagsIf you Like this post buy me a CoffeePopularity: 3% [?]
Posted by admin on 31st, 2007
How to read/convert the data read from a text file into paragraphs and display them paragraph wise. I did a lot of searching about this issue to achieve success. So it thought of just publishing that part of how to split the data paragraph wise and then displaying it.
preg_match_all(’~ <p>.*?</p>~s’, $rawdata,$m);
$paragraphs = $m[0];
foreach($paragraphs as $p)
{ echo $p; }
Here $rawdata is the source in which the preg_replace will search for the pattern <p> </p> and the data between the paragraph tags will be given to $m(array)
$m[0] gives the first matches ie all the paragraphs in the data to $paragraphs(another array). Using the Loop we can now display Paragraphs one by one.
Note: This is my first time im explaining a script. Please excuse me. I’ll work out more to learn more n explaing more
Tags :No TagsIf you Like this post buy me a CoffeePopularity: 10% [?]
Posted by admin on 27th, 2007
Did you get kicked out of adsense?well just relax. There are hell lot of publisher programs around in which u can sign up and earn :). Here i will list down some publisher programs.
Yahoo YPN - Yahoo publisher Network (YPN) is your best adsense alternative if you live in USA. But they are very rarely accepting new publisher applications for new publishers.
Adbrite - Adbrite is your second best adsense alternative (or fist, if you live outside USA) to monetize your website. Please note, you may see very little earnings for first 15 days (or even a month) as they collect your website statistics.
Clicksor - Clicksor is third best adsense alternative. It provides both inline and text-banner contextual ads for your website. So it can also be a good alternative for google adsense.
Kontera - Kontera is an another option which provides inline contextual ads. I have run these ads on one of my sites producing half the income of google adsense
Text Link Ads - If your site is atleast PR4 or have good alexa then you can earn quite a good amount by selling directory links through ‘text link ads’. If your page rank is higer, it can ever surpass your adsense earnings. So go for it. It is highly recommended.
I’ll be Posting a second part to this with more Publisher program Links.
Tags :No TagsIf you Like this post buy me a CoffeePopularity: 4% [?]
Posted by admin on 27th, 2007
Here i’ll just list down some intresting facts about Digg users .
1) Digg Users Do no Click Adds :
As i mentioned in my post target adds to search users only search engine referrals will be intrested in clicking your adds. Digg Users are usually on the path of explorations, so they will hardly or will no click any advertisements. Digg users do increase your site popularity and traffic and thus conusming your website resources.
2) Digg Users Do not comment on your site
Digg users usually do the commenting part in digg itself. They are in to the dugg site just for a sneak.
3) Digg Users do not use ALEXA
4)Digg brings in moderate traffic and eats up bandwidth
5)Digg users does not leave much spam comments compared to slashdot visitors
6)If a site gets showed in digg front page then it will start showing in other social bookmarking sites as well.
Tags :No TagsIf you Like this post buy me a CoffeePopularity: 2% [?]
Posted by admin on 22nd, 2007
You can place Sections in your website so as the Google adbot can understand the Priority of the content in your pages. You can Do it like below
<!– google_ad_section_start –>
HIGH PRIORITY CONTENT
<!– google_ad_section_end –>
You can also Specify those sections in your site which you would not like to give much importance. You can do So by
<!– google_ad_section_start(weight=ignore) –>
LEAST PRIORITY INFORMATION
<!– google_ad_section_end –>
Tags :No TagsIf you Like this post buy me a CoffeePopularity: 4% [?]
Posted by admin on 22nd, 2007
Search Engine Referrals/Visitors are more likely to click on advertisements rather than a normal referral(search engine visitors are always on a hunt digging links). Due to this very fact it if better to target the advertisements to Search Engine referrals.
So inorder to Display you advertisements only to search engine referrals you can use the below php code
<?php
if (preg_match(’/^http:\/\/(\w+\.)?(google|msn|yahoo|aol)\./’,$_SERVER[’HTTP_REFERER’]) == 1) { ?>
AD CODE GOES HERE
<?php } ?>
So If you are aiming just search engine users, stop thinking and start using the above code.
Tags :No TagsIf you Like this post buy me a CoffeePopularity: 2% [?]