html code redirect intro page

Sunday, July 6, 2014

Here is sample JavaScript you need integrate with your template:

<script type="text/javascript">
var url ='../../pagename.html';
var delay = 4;
var d = delay * 1000;window.setTimeout ('parent.location.replace(url)', d);
</script>

Error 1046 No database Selected

Check below steps to resolve the issue.

Steps are

1. Click on database  tab




2. Select database name:
Error 1046 No database Selected,




3. Now try ti import database

show limited list based on location osclass

Saturday, January 25, 2014

Sample code:

<div id="latest-ads">              
                <?php osc_query_item("city_name=Mangalore");
if( osc_count_custom_items() == 0) { ?>
                    <p class="empty"><?php _e('No Latest Items', 'realestate') ; ?></p>
                <?php } else { ?>
                    <?php while ( osc_has_custom_items() ) { ?>
                        <div class="ui-item ui-item-list">
                            <div class="frame">
                                <a href="<?php echo osc_item_url() ; ?>"><?php if( osc_images_enabled_at_items() ) { ?>
                                    <?php if( osc_count_item_resources() ) { ?>
                                        <img src="<?php echo osc_resource_thumbnail_url() ; ?>" title="<?php echo osc_item_title(); ?>" alt="<?php echo osc_item_title(); ?>"/>
                                    <?php } else { ?>
                                        <img src="<?php echo osc_current_web_theme_url('images/no_photo.gif') ; ?>" alt="" title=""/>
                                    <?php } ?>
                                <?php } else { ?>
                                    <img src="<?php echo osc_current_web_theme_url('images/no_photo.gif') ; ?>" alt="" title=""/>
                                <?php } ?>
                                <div class="type"><?php echo osc_item_category(); ?></div>
                                <?php if( osc_price_enabled_at_items() ) { ?><div class="price"><?php echo osc_item_formated_price() ; ?></div> <?php } ?>
                                </a>
                            </div>
                            <div class="info">
                                <div>
                                    <h3><a href="<?php echo osc_item_url() ; ?>"><?php if(strlen(osc_item_title()) > 31){ echo substr(osc_item_title(), 0, 28).'...'; } else { echo osc_item_title(); } ?></a></h3>
                                </div>
                                <div class="data"><?php item_realestate_attributes(); ?></div>
                                <div class="author">
                                    <?php echo osc_format_date(osc_item_pub_date()); ?><br />
                                    <?php echo osc_item_city(); ?> (<?php echo osc_item_region();?>)
                                </div>
                            </div>
                        </div>
                    <?php } ?>
                <div class="clear"></div>
                <?php View::newInstance()->_erase('items') ;
                } ?>
         
 
 
<?php if( osc_count_latest_items() == osc_max_latest_items() ) { ?>
                <div class="pagination-box">
                    <a href="<?php echo osc_search_show_all_url();?>" class="ui-button ui-button-grey"><?php _e("See all offers", 'realestate'); ?> &raquo;</a></p>
                </div>
            <?php } ?>

 </div>   

Make free call using Tata Docomo app GET

Saturday, November 30, 2013

Tata Docomo has launched new app to its user, which provides free 60 seconds talk time to user for each advertisement view.

Get free mobile call app



Usage:
Download it from any app store
Signup for app
Ready to use app

Features:
You can watch advertisement free of cost using Tata docomo data service  (No internet usage cost  applied).
You can use it via Wi-Fi service.
App is totally free.
You can download this app via app store.

Manual and easy steps to remove SVChost.exe virus

Monday, November 18, 2013

SVChost.exe rootkit is a set  virus prgramme used to gain your computer data and activities  without being detected. Most anti-virus software does not detect it. Hence, here is simple steps to find out rootkit virus and delete it from computer.

Go to run
>>type "msconfig" >>window will be open>>click on Startup

Check all running programmes, if you find SVChost.exe, then please check Manufacturer. The orginal manufactrer of SVCHOST.exe is "Microsoft corporation", if you find it "unknow" then its virus.

Steps to remove:
Find out SVChost.exe path using Msconfig startup tab
Click on SVChost.exe
Right mouse click and find out path
Chnage SVChost.exe extension to SVchost.txt
Open in svchost.txt in notepad and remove all codes, Save it.
Finally delete SVChost.txt file.
Again go to msconfig sartup tab uncheck for svchost.exe from running.

Restart your computer

What is SPF ?

Thursday, August 1, 2013

SPF (Sender Policy Framework) is a way to prevent sender address forgery in emails. SPF will not directly stop SPAM (junk email). It will give domain owners a way to define which mail sources are legitimate for their domain and which ones are not.

To enable SPF for your domain, go to the Email Options > SPF Protection section of your Web Hosting Control Panel.
Choose the exact domain name you wish to protect and switch the Status to ON from the drop-down menu next to your domain name.

create virtual keyboard to WordPress blog

Sunday, February 10, 2013

Its easy to create pop-up virtual keyboard in WordPress CMS.



Steps are:
  1. Download plugins at&nbsp pop-up virtual-keyboard
  2. Upload `virtualkeyboard/` to the '/' of your server
  3. Open virtualkeyboard.php in editor, change $keyboard_image = 'your/domain'; to your domain where the image is. Save and Close.
  4. add include('virtualkeyboard.php'); virtualkeyboard_head(); to your header file if applicable, otherwise inside the <head></head> tags will do.
  5. add virtualkeyboard_footer();before the </body> tag
Now browse, the javascript on the client-side takes care of the rest attaching  a keyboard to all text inputs.

Adding Voice mail to Blogger

Saturday, February 9, 2013


Go to  https://www.speakpipe.com/

  1. Sign into your Blogger Dashboard.
  2. Go to your blog settings.
  3. Click on "Layout".
  4. Add SpeakPipe embded code to field (leave the title blank).
  5. Click "Save".
Screenshots as below:






OpenCart category code

Wednesday, October 24, 2012

 <ul>
    <?php foreach ($categories as $category) { ?>
    <li><a href="<?php echo $category['href']; ?>"><?php echo $category['name']; ?></a>
      <?php if ($category['children']) { ?>
      <div>
        <?php for ($i = 0; $i < count($category['children']);) { ?>
        <ul>
          <?php $j = $i + ceil(count($category['children']) / $category['column']); ?>
          <?php for (; $i < $j; $i++) { ?>
          <?php if (isset($category['children'][$i])) { ?>
          <li><a href="<?php echo $category['children'][$i]['href']; ?>"><?php echo $category['children'][$i]['name']; ?></a></li>
          <?php } ?>
          <?php } ?>
        </ul>
        <?php } ?>
      </div>
      <?php } ?>
    </li>
    <?php } ?>
  </ul>

Website is not enough for business....

Friday, September 21, 2012

Website without seo is a like your business visiting card, website will refer only those who knows web address.

Today, I am going to write on importance of SEO?

SEO is a techniques, which used to position your company website top in Google or other searches. As you know most of website visitors comes from Google. Since Internet is a famous marketing media for business. it is important to have well position in Search Engines. Once you occupy this search engine market, you are leader in marketing.

Best search engine service provider.
There are many search engine specialist's in market but it is your choice to choose best one at affordable price.

What are information need when you contact Website SEO specialists?
1. First You should evaluate SEO provider website value: If SEO service provider website not well crawled, then what can he do for clients?
2. Your keywords: what are the keywords best value for your business.
3. Budget: You should know, whether SEO price is reasonable for the keywords (imp: Some keyword have big competitors so you need big budged.)

keyword optimization

Thursday, September 13, 2012

keyword optimization is one of the impotent process in SEO, you will get visitors only if you choose rite keywords. These are free tools, which helps SEO adviser:

https://adwords.google.com/o/KeywordTool
http://www.wordstream.com/keywords
http://www.google.com/insights/search/


copy content checker

Wednesday, September 12, 2012


Now a days most of the people are hiring content writter, so dubicate contents are common all over. Here is the solution for that.  whenever you write and publish new articles, check your content whethet its duplicate or exist in web.

Risk of dublicate content:
Your blog or website removed from search engine or descrease your page and web rank.

Online copycontent checker link:
http://www.copyscape.com/
http://www.duplichecker.com/
http://plagiarisma.net/
http://www.plagium.com/

Twitter buttons to website

Saturday, August 25, 2012

You can get HTML code for Twitter buttons at http://twitter.com/about/resources/buttons . Once you get the code, you can add it to your website.

Web hosting Name Servers


Primary nameserver: ns1.accountsupport.com
IP address: 65.254.254.104
Secondary nameserver: ns2.accountsupport.com
IP address: 65.254.254.105
Primary nameserver: ns1.bluedomino.com
IP address: 65.254.254.122
Secondary nameserver: ns2.bluedomino.com
IP address: 65.254.254.123
Primary nameserver: ns1.dot5hosting.com
IP address: 66.96.142.106
Secondary nameserver: ns2.dot5hosting.com
IP address: 65.254.254.142
Primary nameserver: ns1.domainhost.com
IP address: 65.254.254.106
Secondary nameserver: ns2.domainhost.com
IP address: 65.254.254.107
Primary nameserver: ns1.ehost.com
IP address: 65.254.254.120
Secondary nameserver: ns2.ehost.com
IP address: 65.254.254.121
Primary nameserver: ns1.entryhost.com
IP address: 65.254.254.112
Secondary nameserver: ns2.entryhost.com
IP address: 65.254.254.113
Primary nameserver: ns1.freeyellow.com
IP address: 65.254.254.120
Secondary nameserver: ns2.freeyellow.com
IP address: 65.254.254.121
Primary nameserver: ns1.hostcentric.com
IP address: 65.254.254.88
Secondary nameserver: ns2.hostcentric.com
IP address: 65.254.254.94
Primary nameserver: ns1.hypermart.net
IP address: 65.254.254.108
Secondary nameserver: ns2.hypermart.net
IP address: 65.254.254.109
Primary nameserver: ns1.hostyoursite.com
IP address: 65.254.254.120
Secondary nameserver: ns2.hostyoursite.com
IP address: 65.254.254.121
Primary nameserver: ns1.imoutdoorshosting.com
IP address: 65.254.254.114
Secondary nameserver: ns2.imoutdoorshosting.com
IP address: 65.254.254.115
Primary nameserver: ns1.ipower.com
IP address: 66.96.142.109
Secondary nameserver: ns2.ipower.com
IP address: 65.254.254.144
Primary nameserver: ns1.fatcow.com
IP address: 65.254.254.100
Secondary nameserver: ns2.fatcow.com
IP address: 65.254.254.101
Primary nameserver: ns1.networkshosting.com
IP address: 65.254.254.116
Secondary nameserver: ns2.networkshosting.com
IP address: 65.254.254.117
Primary nameserver: ns1.purehost.com
IP address: 38.113.1.38
Secondary nameserver: ns2.purehost.com
IP address: 38.113.1.39
Primary nameserver: ns1.powweb.com
IP address: 65.254.254.135
Secondary nameserver: ns2.powweb.com
IP address: 65.254.254.134
Primary nameserver: ns1.readyhosting.com
IP address: 65.254.254.124
Secondary nameserver: ns2.readyhosting.com
IP address: 65.254.254.125
Primary nameserver: ns1.startlogic.com
IP address: 66.96.142.100
Secondary nameserver: ns2.startlogic.com
IP address: 65.254.254.136
Primary nameserver: ns1.bizland.com
IP address: 38.113.1.34
Secondary nameserver: ns2.bizland.com
IP address: 38.113.1.35
Primary nameserver: ns1.virtualave.net
IP address: 65.254.254.110
Secondary nameserver: ns2.virtualave.net
IP address: 65.254.254.111
Primary nameserver: ns1.xeran.com
IP address: 65.254.254.120
Secondary nameserver: ns2.xeran.com
IP address: 65.254.254.121
Primary nameserver: ns1.easycgi.com
IP address: 66.96.142.111
Secondary nameserver: ns2.easycgi.com
IP address: 65.254.254.146
Primary nameserver: ns1.globat.com
IP address: 66.96.142.113
Secondary nameserver: ns2.globat.com
IP address: 65.254.254.148
Primary nameserver: ns1.apollohosting.com
IP address: 66.96.142.115
Secondary nameserver: ns2.apollohosting.com
IP address: 65.254.254.150
Primary nameserver: ns1.ipage.com
IP address: 66.96.142.116
Secondary nameserver: ns2.ipage.com
IP address: 65.254.254.151
Primary nameserver: ns1.webhost4life.com
IP address: 66.96.142.117
Secondary nameserver: ns2.webhost4life.com
IP address: 65.254.254.152
Primary nameserver: ns1.YourWebHosting.com
IP address: 66.96.142.112
Secondary nameserver: ns2.YourWebHosting.com
IP address: 65.254.254.147
Primary nameserver: ns1.netfirms.com
IP address: 65.254.254.157
Secondary nameserver: ns2.netfirms.com
IP address: 66.96.142.145

Download songs from YouTube

Thursday, May 31, 2012


Youtube to Mp3 converter online free

Millions of people choose this website to download songs from YouTube. This is free and can download songs from YouTube easily with great speed.
Steps
1.Go to http://www.youtube-mp3.org/
2.Pate your song link into box
3.download it
YouTube to mp3 Converter

What is the different between Inbound links and Outbound links?

Tuesday, April 3, 2012


In simple, Inbound links are those, which links to your website from other website.

Outbound links are those,  which links to others website from your website.

In bound links are helps your website to get best rank in search engine.

fix 500 internal server error

Thursday, January 5, 2012

There are many reason for internal server error, first thing you need to do is check the error.
Whether it is Server error or error in script.

To check error, please replace your index page code with follwing one:

#!/usr/bin/perl
print "Content-type: text/plain\n\n";
print "testing...\n";


If index web page does not show text "testing", then you can considered it is a server problem and you need to contact hosting provider, Otherwise you can resolve this issue yourself by reading this articles,

1. change your cgi directory permission to 755, Similarly if your script is at .../cgi-bin/foo/bar.cgi, the foo directory must not be world-writable (0777).  
(Note folder permission always should be 755 not 777)



2.Transfer modes: if you are using FTP to transfer the CGI script to your server, then your FTP client is probably set to AUTO transfer mode; that is, it will try to figure out whether to use BINARY or ASCII mode without asking you.  But depending on whether your CGI script came from a Windows or UNIX system, and whether it's going to a Windows or UNIX system, you may need to manually set your FTP client to use either ASCII or BINARY mode before transferring your CGI script.  Try one and then the other.


3.Line endings: the cause of the transfer-mode problem is actually another problem in itself: different types of Operating Systems (namely, Windows vs. UNIX/Linux/everything) use different character codes to represent line-endings.  If your server is a UNIX server, but you're editing your CGI script on a Windows computer with a text-editor that doesn't use UNIX-style line-endings, it'll cause problems.  Applications like GoLive and Dreamweaver sometimes get this wrong.  Even built-in editors can't agree: WordPad (not Word) seems to get it right while Notepad messes it up.  So try opening & saving your CGI script in a different text editor and uploading it to the server again.
 

Most Reading

Sidebar One

+1-800-574-0902 +44-20-7993-2673 (ID: 173296)