Pages

Thursday, November 4, 2010

Numbered Page Navigation For Blogspot


Numbered Page Navigation For Blogspot
Page Navigation is an awesome feature. You might have seen numbered page navigation on many wordpress blogs But Number navigation is really essential feature for every blog site. You can make easily page number navigation from now.

2.Don’t click the checkbox which says ‘Expand Widget Templates’


3.Now find

]]></b:skin>

and replace it with


.showpageArea a {
text-decoration:underline;
}
.showpageNum a {
text-decoration:none;
border: 1px solid #cccccc;
margin:0 3px;
padding:3px;
}
.showpageNum a:hover {
border: 1px solid #cccccc;
background-color:#cccccc;
}
.showpagePoint {
color:#333;
text-decoration:none;
border: 1px solid #cccccc;
background: #cccccc;
margin:0 3px;
padding:3px;
}
.showpageOf {
text-decoration:none;
padding:3px;
margin: 0 3px 0 0;
}
.showpage a {
text-decoration:none;
border: 1px solid #cccccc;
padding:3px;
}
.showpage a:hover {
text-decoration:none;
}
.showpageNum a:link,.showpage a:link {
text-decoration:none;
color:#333333;
}
]]></b:skin>




Next is the JavaScript part. Find

 </body>

and replace it with


<!--Page Navigation Starts-->
<b:if cond='data:blog.pageType != &quot;item&quot;'>

<b:if cond='data:blog.pageType != &quot;static_page&quot;'>
<script type='text/javascript'>
var pageCount=5;
var displayPageNum=5;
var upPageWord =&#39;Previous&#39;;
var downPageWord =&#39;Next&#39;;
</script>
<script src='http://blogergadgets.googlecode.com/files/blogger-page-navi.v1.js' type='text/javascript'/>
</b:if>
</b:if>
<!--Page Navigation Ends -->
</body>

 

As you can see,there are some customizable parameters in this code
var pageCount=5;
This code determines the number of posts that would be displayed per page.
var displayPageNum=5;
This code determines the number of additional page navigation numbers that will be displayed on the page.
var upPageWord =&#39;Previous&#39;;
var downPageWord =&#39;Next&#39;;
These two lines determine the text that would be shown for the previous page and next page respectively.
 



 

Clean All Unnecessary Files Without Software



Clean All Unnecessary Files

Temp
Temporary Internet Files
History
Recent

Technique:
First You Open NotePad  Copy Under Code and past on Notepad and Save it CleanFile.bat after save
 you click CleanFile File. 

***************************

@echo off


if %username% == Administrator.WINDOWS goto admin

REM ** Delete User Files **

rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Recent"
rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Local Settings\Temp"
rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Local Settings\History\History.ie5"
rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Local Settings\Temporary Internet Files\content.ie5"

goto end

:admin
REM ** Do some extra stuff here **
REM ** What ever you want..... **

ECHO You are a Administrator

rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Recent"
rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Local Settings\Temp"
rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Local Settings\History\History.ie5"
rmdir /S/Q "%systemdrive%\Documents and Settings\%username%\Local Settings\Temporary Internet Files\content.ie5"

REM ** Do more stuff here **
REM ** Blah, blah, blah......**

:end
exit

Monday, October 25, 2010

How to Prevent Search Engines from Indexing Specific Pages

How to Prevent Search Engines from Indexing Specific Pages

You can prevent the indexing of a particular page in the following ways:

Applying the NOINDEX metatag:


Place one of the following metatags in the <HEAD> section of your page:
<META NAME="ROBOTS" CONTENT="NOINDEX">
   or
Yahoo! Slurp retrieves the document, but it does not index the document text.

Applying the NOINDEX Directive:


Configure your web server to place the following directive in the HTTP header used to serve the page:
    X-Robots-Tag:NOINDEX
    
    
Note: Although the document content is not indexed, the URL might remain in the search engine database as a reference link from other public web pages.



How to Reduce the Number of Requests the Search Crawler Makes on Your Site

How to Reduce the Number of Requests the Search Crawler Makes on Your Site

If you occasionally get high traffic from search crawlers, you can specify a crawl delay parameter in the robots.txt file to specify how often, in seconds, search crawlers can access your website. To do this, add the following syntax to your robots.txt file:
User-agent: *
Crawl-delay: 10
Individual crawler sections override the settings that are specified in * sections. If you've specified Disallow settings for all crawlers, you must add the Disallow settings to the search crawler section you create in the robots.txt file. For example, your robots.txt file might have the following:
User-agent: *
Disallow: /private/
If you add a specific search crawler section, you must add any Disallow settings to that section.
For example:
User-agent: *
Crawl-delay: 10
Disallow: /private/

Click Older Posts To Next Pages