DoFollow Blog

Archive

Archive for January, 2008

Domainoker reduced prices for .in domains – 4.47$

January 18th, 2008
Share

Domainoker reduced prices for .in domains – 4.47$

.IN at a Never Before Price

Establish an online presence in India with the .IN Vanity TLD at Rock Bottom Pricing. With the rush and demand for .IN domains increasing by the minute, we now offer Second and Third Level Domain Names for the popular, fast growing .IN ccTLD at a never before price of USD 4.47.
The above promo pricing is applicable only to the first year of registration.

Author: Dani Zaharie Categories: Domains Tags:

How to backorder a domain name

January 18th, 2008
Share

Are you struggling to find a good domain name for your new site? If so you may wish to consider using a domain backorder service. This article introduces the basic concepts of domain backordering and lists some of the services available.

A domain backorder service allows you to submit a backorder for a domain you wish to purchase. At the time of your submitting the backorder, the domain is owned by someone else. By submitting a domain backorder, you are hoping that at the time the domain expires, and is not re-registered by its owner, the domain backorder service will register it for you. The domain backorder fees vary by domain backorder service. The following domain backorder services are some of the most popular domain backorder services out there.

SnapNames.com – one of the stronger services, affiliated with about a dozen registrars. They will attempt to register the domain name for you for a fee of $60. If however more then one person is interested in the same name and has attempted to backorder it via Snapnames.com, the domain name goes into auction. The SnapNames auction last for 3 days and is awarded to the highest bidder. Auctions for dropped names have been known to go into $xx,xxx easily.

Pool.com – is a strong competitor to SnapNames.com. Pool.com might have a smaller pool of registrars ( excuse the pun ), but they sometimes manage to grab some names quicker then SnapNames.com. Pool.com has a similar auction setup and also charges a backordering fee of $60.

NameWinner.com is another domain name backorder service. They are not as strong as the top two, and might not grab as many names, but they can be successful at times. They charge $30 per backorder.

Godaddy.com provide their own backordering service. They do not publicize how many registrars they are associated with, if any. Their charge a fee of $18 for a backorder and if successful the name does not go into auction. They are not as successful for popular names as the top two.

Enom.com is a strong competitor to Pool.com and SnapNames.com. Their fee is $30 and they seem to have been quite successful in backordering some bigger names in recent times. Do make sure you check them out for comparison.

Overall, when backordering a really special name, I cover all my bases and pick 3 or 4 from the list of big backordering services. I usually go with Pool.com, SnapNames.com, Enom.com and Godaddy.com. By backordering with a few companies, you are multiplying your chances of grabbing that all important name. Since each of the services is associated with varied registrars, by covering all bases you are getting more registrars to work for you.

Article by John Motson www.dnexpert.com

Author: Dani Zaharie Categories: Domains Tags:

Namecheap is now ICANN accredited

January 18th, 2008
Share

Namecheap posted the message on their site yesterday: “Good news, we are pleased to announce that NameCheap.com is now an ICANN accredited registrar!” Good news indeed. Stay tuned for more information in the next few days. In the meantime see the current Namecheap coupon code

Author: Dani Zaharie Categories: Domain Hosting Tags:

Make Money Online with a Web Hosting Affiliate Program

January 18th, 2008
Share

Make money online by joining a web hosting affiliate program.

If you currently host a website, joining a web hosting affiliate program can make you significant money when used intelligently, plus you can easily recoup the costs of bandwidth and server space. Web hosting affiliate programs are easy and free to join – all it takes is a few referrals in order to bring in new income.

If you’re happy with your current domain and hosting provider, ask them about their web hosting affiliate program. Often times, customer referrals can bring between $50 and $100 for each customer that signs up to your own provider’s hosting service. Many web hosts offer a web hosting affiliate program that pays a percentage of the sales made when customer you refer sign up for their services. This could be a recurring monthly, quarterly or annual repeat payment.

Most web hosting affiliate programs will send payments via check or send them directly to your bank account or even your Paypal account if you have one. You may have to wait until you have earned a certain amount. This could be as low as $50 or as high as $150 depending on the company policy. Imagine the income after making a few referal each week! There are also companies such as >WebmasterFX and TemplateMonster which offer affiliate programs for a very similar market, in this case marketing tools and design templates for webmasters. Offering your visitors a range of related goods and services is likely to increase your total referal commissions. Web hosting affiliate programs are easy to join – just fill out an online form and put an approved link on your existing website. You could also add a link in your emails and use them in discussion forum signatures. Of course if the program is lucrative enough it may be worth trying some paid advertising to speed up results. Look for a program with a large range of promotion material such as banners and text links to place on your site, and you’ll be on your way to making profits through a new revenue stream in just minutes!

Author: Dani Zaharie Categories: Affiliate Programs Tags:

How to install FFMPEG on windows?

January 10th, 2008
Share

This tutorial is about transcoding video fom one codec into another using FFMPEG. I got deeper into FFMPEG when I wanted to transcode into FLV (Flash Video) and it works very well. I developed the Riva FLV Encoder, a GUI for FFMPEG.

Update 26.10.2006: This tutorial is a little outdated as there were many changes in FFMPEG like the switch from CVS to Subversion and the workflow to compile FFMPEG under Windows has become more difficult. For the new tweaks check this tutorial.

  1. Download MinGW ” MSYS current releases (Window Exe Binaries MSYS-1.0.10.exe & MinGW-3.1.0-1.exe)
      Install MinGW
      Install MSYS
      HINT: During the Postinstall be sure to set the right path to MinGW with a “/” instead of a Windows-”". If you did it wrong anyway re-install MSYS to the same directory and do the postinstall right (I missed it a few times)
  2. Download and compile Lame
      Extract Lame to your MSYS home-directory
      Open MSYS and change to your lame-directory (cd ../lame-XXX)
      Enter the following commands:

      CODE:

      1. ./configure //(takes a few minutes)
      2. make //(lame is being comiled; takes a few minutes, too)
      3. make install
      After installing you will recognize that there are new directories and files in MSYS/local which we will use while compiling ffmpeg with mp3-support
  3. Download Subversion Client like Tortoise SVN (http://http://tortoisesvn.tigris.org/) and install it
      Check out the sourcecode from svn://svn.mplayerhq.hu/ffmpeg
  4. Compile FFMPEG
      Change the directory in MSYS to your ffmpeg-directory (cd ../ffmpeg)
      Enter the command:

      CODE:

      1. ./configure –enable-memalign-hack –enable-mingw32 –enable-mp3lame –extra-cflags=-I/local/include –extra-ldflags=-L/local/lib
      HINT: you can paste into MSYS by pressing your center mouse-button
    1. “–enabled-memalign-hack” is a Windows hack. Without this option ffmpeg always crashs with the message “removing common factors from framerate” when encoding AVIs.
    2. “–enable-mingw32″. I see no difference without it but we compile with MinGW and it would not do a harm when ffmpeg knows this
    3. “–enable-mp3lame”: Enable transcoding audio with the open-source mp3-lame-codec
    4. “–extra-cflags=-I/local/include –extra-ldflags=-L/local/lib”: The cflags- and ldflags-parameter sets the right path to your lame-installation which you did in step 3.d.
      Enter command: make (ffmpeg is being compiled; takes a few minutes)
      With “make install” you could now copy the ffmpeg.exe to c:Program Filesffmpeg. But there is no need to.
  5. Use FFMPEG
      Copy your compiled ffmpeg.exe from your MSYS directory to the directory where you like to transcode with ffmpeg
      Open the Dos-Shell and change to the directory where you copied the ffmpeg.exe
      Copy a test.mpg into your directory and enter the following command:

      CODE:

      1. ffmpeg -i test.mpg -ab 56 -ar 22050 -b 500 -r 15 -s 320×240 test.flv
      Your first FLV should be encoded now
  6. Render Images from a Video
      Enter command:

      CODE:

      1. ffmpeg -an -y -t 0:0:0.001 -i test.flv -f image2 test%d.jpg
      HINT: With -t you set the length of images to be extracted. Above we entered 1 millisecond the extract one image. If you miss this parameter all images of the video will be extracted

ZLib Support (e.g. for TSCC and Quicktime codecs). This should be compiled into FFMPEG. It is not an explicit compile in the configure statement. Do the following steps and after configure you should see that zlib is “on”.
Download and compile ZLib
Extract the files to your mysys directory
Change the directory in MSYS to that directory
Enter command ./confugure, make and make install.
AC3 Support
Add “–enable-a52 –enable-gpl” to your configure command3GP Support
If you want to enable 3GP support you have to add the AMR audio codec. Download the TS26.104
REL-5 V5.1.0 26104-5??.zip here. Extract the codec into libavcodec/amr_float and add “–enable-amr_nb” to your configure command

XVID Support (thanks to garvin.thornten at datel.co.uk)
Download and install the codec from www.xlib.org (see xvidcore-xxxx/doc/install). Add “–enable-xvid –enable-gpl” to your configure command. When compiling with xvid codec in MinGW or cygwin you will get a “mkstemp” error when compiling “xvidff.c”. To fix this edit “libavcodec/xvidff.c” and add the following after the #includes. This will probably be fixed in a future ffmpeg release: ´

C:

  1. /* Added for windows compile —————– */
  2. #include
  3. int xvid_ff_2pass(void *ref, int opt, void *p1, void *p2); void xvid_correct_framerate(AVCodecContext *avctx);
  4. int mkstemp(char* template)
  5. {
  6. char temppath[512];
  7. if(GetTempPath(512,temppath)!=0)
  8. {
  9. if(GetTempFileName(temppath,“fil”,0,template)!=0)
  10. {
  11. FILE *pFile;
  12. pFile=fopen(template,“w+”);
  13. if(pFile!=NULL)
  14. return (int)pFile;
  15. }
  16. }
  17. return -1;
  18. }
  19. /* ——————————————- */

Link about qscale
removed “-f singlejpeg” as its identical to “-f mjpeg”

Author: Dani Zaharie Categories: Webmasters Tags: ,

Centrum.cz acquired by Warburg Pincus

January 9th, 2008
Share

The No. 2 Czech Web Portal Centrum.cz and it’s parent company NetCentrum SRO, was acquired by private Equity Fund Warburg Pincus. Centrum.cz, also offers Web searching and context-based online advertising services. Apparently, Czech media has reported the value of the Web portal to be around $147 million.

Author: Dani Zaharie Categories: Buy & Sell Sites, Websites Tags:

Bankrate acquires Savingforcollege.com

January 9th, 2008
Share

Bankrate acquires Savingforcollege.com, a privately owned business run by college finance industry specialist, Joseph Hurley, for $2.25 million plus $2 million in possible earnouts. Savingforcollege.com offers various tools, such as online calculators and professional directories, and information about 529 college savings plans to help families save money for college.

Author: Dani Zaharie Categories: Buy & Sell Sites, Websites Tags:

Grandparents.com acquires GrandparentsMagazine.net

January 9th, 2008
Share

Grandparenting resource GrandparentsMagazine.net, with an estimated 100,000 monthly uniques, has been acquired by Grandparents.com. GrandparentsMagazine.net founder Katrina Hayday Wester will join Grandparents.com. Grandparents.com is headquartered in New York City and owned by private investment firms Laser Partners and TWS Partners.. Terms of the deal were not disclosed.

Author: Dani Zaharie Categories: Buy & Sell Sites, Websites Tags:

StyleHive.com acquires StyleDiary.net web property

January 9th, 2008
Share

San Francisco based social shopping website StyleDiary.net has been acquired by StyleHive.com. StyleDiary.net which allows users to submit, tag and vote on fashion items raised $2.62 million from Lightspeed Venture Partners last year. Terms of the acquisition were not disclosed.

Author: Dani Zaharie Categories: Buy & Sell Sites, Websites Tags:

Penthouse buys FriendFinder.com parent company Various Inc.

January 9th, 2008
Share

Penthouse acquired adult-oriented social network operator Various Inc., which owns and operates more than 25 sites like AdultFriendFinder.com, alt.com, Italianfriendfinder.com, gradfinder.com and even faith-based sites like bigchurch.com, for $500 million. Various has a membership base of more than 260 million users and about 1.2 million paid subscribers and generates an estimated $340 million in revenue. Penthouse had previously acquired Danni.com in March 2007.

Author: Dani Zaharie Categories: Buy & Sell Sites, Websites Tags: