Cisco deploys virtual lecture facility in BITS Pilani

Networking giant Cisco said BITS Pilani has deployed its virtual lecture facility that will benefit 11,000 students and 700 teachers with access to business leaders and guest lecturers around the globe.

"Birla Institute of Technology and Science (BITS) Pilani, has successfully deployed Cisco TelePresence videoconferencing and Cisco WebEx technologies as part of a cross-campus technology initiative, BITSConnect 2.0," said Cisco Director Collaboration Sales (India & SAARC) Minhaj Zia.

The platform is aimed at creating a dynamic and collaborative learning environment by connecting classrooms through a MPLS-based data network, he added.

BITS will utilise Cisco's capture, transform, share (CTS) video platform to enable professors to record lectures and make it available for replay, which provides access to key content from any location any time, increasing value and reach.

BITS will also be able to bring experts from across the globe for guest lectures, workshops and other academic pursuits and students from all the three campuses can have real time interaction with the experts.

Using the new Cisco Telepresence facility, BITS Pilani is offering 14 specialised electives to students across its three campuses.

"This joint University-Alumni initiative will provide seamless integration of all campuses, create new avenues of research collaboration and knowledge sharing among faculty, students and researchers worldwide," BITS Pilani Vice Chancellor Bijendra Nath Jain said.

BITS Connect 2.0 initiative will further strengthen industry linkage and enable remote placements with minimal travel costs to prospective employers, he added.

Nasdaq-listed Cisco is a leading global player in providing networking solutions.

Install WordPress on WampServer

WordPress is an free and open source blogging and CMS tool. WordPress is easy to manage and at the same time, a very powerful tool. One can easily extend the functionality of WordPress by installing plugins. It is estimated that 15% of the present websites are built on WordPress. To your surprise, WPWebHost is also built on WordPress.
WampServer is an open source web development platform on Windows. It allows you to create web applications with Apache2, PHP and a MySQL database.WampServer consists these software: Apache, MySQL and PHP/phpMyAdmin.

Why to install WordPress on WampServer?

WordPress is a popular choice today for people to create websites because of its user-friendliness and powerful features. But, Installing WordPress on your hosting directly and getting along with it can be a tough process. Also, you need to test your website, theme, etc to rest assure that it will not crash on the live server. So, to do this task, we setup a WampServer (which has all the basic requirements to install Worpdress), install WordPress on WampServer and then test our website before its final launch. Also, you get hand-to-hand experience with WordPress.

1~ Download setup files

  1. Download ‘WampServer’ from its download page: http://www.wampserver.com/en/#download-wrapper
  2. Download ‘Worpdress’ from its download page: https://wordpress.org/download/

2~ Install WampServer

Lets install WampServer on your Windows. Just follow the simple six steps visual procedure:
(Though, WampServer 2.2a was used for this tutorial, you will find it helpful for any version of WampServer.)
NOTE: I will suggest not to change the names I’ve used in the tutorial, else you can find yourself in trouble. Please only change names if you’re sure you can keep up with the changes.

1. Start the setup by opening the file you downloaded in step 1 of downloading setup files.
Install WampServer step 1
2. Accept the agreement and Click ‘Next’ button.
Install WampServer step 2
3. Select your installation folder and click ‘Next’. I will recommend you to leave it as it is.
Install WampServer step 3
4. Select extra icons (if you want to have shortcut icons) and click ‘Next’.
Install WampServer step 4
5. Click ‘Install’.
Install WampServer step 5
6. WampServer setup completed. Click ‘Finish’.
Install WampServer completed

How To Install WordPress on WAMPSERVER

Microsoft‘s app innovation fest held in Delhi

Microsoft's technology event TechDays, which promotes application development particularly for its recently launched Windows 8 platform, reached its last destination of the National Capital today after covering 50 cities across the country in the last four months.

The one-day event here saw participation of over 700 IT enthusiasts and professionals, the software giant said in a release. 

The event that was kicked off in October 2012 and covered 50 cities saw over 15,000 participants, it added. 

"The all-India developer and IT pro extravaganza touched ... 50 cities in the last four months, providing them a unique learning experience and helping them convert their ideas into real apps," the software giant said. 

TechDays gives opportunities to bring Indian developers to shape the apps ecosystem across multiple devices and hardware forms, providing developers the prospect to maximise their revenues, it added. 

The event was kicked off at Mysore in October 2012 and covered cities like Trivandrum, Hyderabad, Coimbatore, Chennai, Kolkata, Mumbai, Bhubaneswar, Indore, Ahmedabad and Chandigarh, it said. 

"TechDays provides expert guidance on site and deep product exploration to fast track ideas to the app journey on Windows 8, Windows Phone 8, Office 2013, Office 365 and Windows Azure platforms," Microsoft India General Manager (DPE) Joseph Landes said. 

TechDays covered more than three cities every week helping professionals and students with the latest, cutting edge Microsoft technologies and equip them with valuable insights and best practices, he added. 

"The Windows platform has unlimited potential for us for developing any category of apps with a great revenue-sharing model," Technology Architect Sumit Dutta, who is the creator of the Toddler Count app, said.

What Is the Relationship Between ERP and CRM?


Enterprise Resource Planning (ERP) and Customer Relationship Management (CRM) are both systems designed to automate and streamline processes in a business. While CRM is a system for managing the front-end of the business, ERP is involved in managing the back-end. The relationship between ERP and CRM is that these are two systems that need to work in conjunction with each other in order for the front and back office of the business to work effectively and efficiently.
Customer relationship management is the process of how a business manages its customer contacts. As the name implies, CRM focuses on how, when, where, and why the business interacts with current and potential customers. It includes the management of marketing activities to attract new customers and to communicate with existing customers. Customer accounts, managing customer activities, and providing customer support are the other primary areas covered under this process.
Enterprise resource planning is a system that manages how the business is managed and operated, so it deals with the business functions of the company. Some of the processes that fall under ERP are customer service, managing inventory, planning for the production of the goods and services that the business sells, tracking orders, and purchasing supplies for the business to operate. ERP focuses on automating the processes of the project management, distribution, financial, sales, and manufacturing areas of small- to medium-sized businesses.

Accessing Your Database Remotely Via SSHTunnel


Accessing Your Database Remotely Via SSHTunnel Sounds good.Now Without wasting your much time lets go.As Your Know Our database instance is not directly accessible from outside the environment. This is a good thing because a database cannot reliably maintain the security and patch levels like SSH can. However, it means that to access your database from an external database tool, such as pgAdmin, MySQL Query Browser, or SQLyog, you need to create an SSH tunnel to your database host/instance.
For example, you want to run pgAdmin or MySQL Query Browser on your laptop and you want to use this tool to examine your application database: You create an SSH tunnel from your laptop (the local) to your database instance (the remote) on Engine Yard Cloud.
You can also use SSH tunnels to set up offsite replication.

About SSH tunnels

An SSH tunnel links a port on your local machine to a port on a remote host. When these ports are linked, anything communicated to the local port is passed through SSH to the remote port; likewise, any communication to the remote port is passed back through SSH to the local port. The added benefit of this setup is that the communications between your local machine and the remote host is encrypted by the SSH connection.

Create the SSH tunnel manually

The syntax for creating the SSH tunnel is ssh -L [local port]:[database host]:[remote port] \
[username]@[remote host]
  • [local port] The local port your database tool connects to.
    If you have a MySQL installation on your local machine, it runs on port 3306 by default; therefore, don’t use 3306 for the local port. For example, use 3307 instead.
    If you have a PostgreSQL installation on your local machine, it runs on port 5432 by default; therefore, don’t use 5432 for the local port. For example, use 5433 instead.
  • [database host] The hostname or IP address of the database instance that you are tunneling to. If the [remote host] is the database instance you will want to set this to 127.0.0.1 (so it refers to itself). If you used an application instance as [remote host] then you can use the value of “host:” from your database.yml instead.
  • [remote port] The port that your remote database listens for connections on.
    For MySQL databases, this is 3306 by default.
    For PostgreSQL database, this is 5432 by default.
  • [username] the user for the database instance. The default user for the Engine Yard Cloud database is deploy.
  • [remote host] the remote instance your tunnel will connect to the database through. This can be the database instance itself, or any instance within the database environment.
The tunneling command opens an SSH session with the [remote host] specified. The tunnel will work as long as that SSH session is active. If the session window is consuming valuable workspace we recommend minimizing it as running tunnels in the background can lead to multiple tunnels and port conflicts.

To create and test the SSH tunnel for a MySQL database

  1. In a terminal window on your local machine, type:
    ssh -L 3307:ec2-172-16-139-19.us-west-1.compute.amazonaws.com:3306 \
    deploy@ec2-174-129-17-196.compute-1.amazonaws.com
    where
    3307 is the local port,
    ec2-172-16-139-19.us-west-1.compute.amazonaws.com is the database host,
    3306 is the listening port,
    deploy is the database username, and
    ec2-174-129-17-196.compute-1.amazonaws.com is the remote host.
  2. Before connecting the external database tool such as MySQL Query Browser or SQLyog, test the connection with a simple tool such as the database console, mysql.
    (Your tunnel needs to be running for this test.)Type
    mysql -udeploy -p -P 3307 -h 127.0.0.1
    where
    deploy is the database username on the remote host and
    3307 is the local port.
    You are prompted for your database password.
    Note: for the -h argument, it is necessary to use 127.0.0.1 instead of localhost.

To create and test the SSH tunnel for a PostgreSQL database

  1. In a terminal window on your local machine, type
    ssh -L 5433:ec2-172-16-139-19.us-west-1.compute.amazonaws.com:5432 \
    deploy@ec2-174-129-17-196.compute-1.amazonaws.com
    where
    5433 is the local port,
    ec2-172-16-139-19.us-west-1.compute.amazonaws.com is the database host,
    5432 is the listening port,
    deploy is the database username, and
    ec2-174-129-17-196.compute-1.amazonaws.com is the remote host.
  2. Before connecting the external database tool such as pgAdmin, test the connection with a simple tool such as the database console psql.
    (Your tunnel needs to be running for this test.)Type
    psql -Udeploy -d myapp -p 5433 -h 127.0.0.1
    where
    deploy is the database username on the remote host and
    5433 is the local port.
    You are prompted for your database password,

Google acquires an infrastructure startup Talaria. Will it help Google crush AWS?

Google has acquired a company that will help it run more software on fewer machines — a big deal for a company that has something in the neighborhood of one million servers. Talaria confirmed on its web site Friday that it was purchased by Google and that its software will become part of its Google Cloud team.
Talaria is mum about what it does on its current website, but on a cached version from March 9 it says the company is offering developers the use of “easy” programming languages such as Python or Ruby, while making them more efficient, like a compiled language is. The end result is today’s developers can code in the languages they love and use Talaria’s application server to somehow make that language more efficient.
From the cached version of the website:
At Talaria, we’re building a new, dynamic web application server with a JIT-based runtime at its heart. Today, it supports PHP and runs real-world applications like WordPress and Drupal. Talaria’s application server lets you handle more users with fewer boxes, without changing a line of code. Instead of worrying about your server bill, you can get back to building your app.
Facebook has done something that looks similar when it introduced Hip Hop as a way to make its existing PHP code more efficient. HipHop for PHP is a source code transformer that programmatically transforms PHP into highly optimized C++ and then uses g++ to compile it. The social network developed Hip Hop to boost the performance of Facebook applications while also lowering hardware costs.
If Talaria is doing something along these lines, this would help Google in two ways. It would enable Google to deliver a platform for developers that lets developers use their preferred languages, while giving the apps hosted on the Google cloud apps a performance advantage. But it would also help Google by letting it run those apps on fewer machines.
That would help Google lower the costs of operating and running machines, which could give it a leg up in its brutal price war with Amazon Web Services.

Restore Missing Desktop Icons and Taskbar !!


We have received this problem from many readers, they reported that suddenly they found all the desktop icons and taskbar disappeared after windows startup. The only way to control your computer is through task manager as windows explorer is not running.

This problem of missing desktop icons and taskbar is caused when your computer is infected by Adware.Dynamic from Dynamic Desktop Media. This adware runs a process sysu.exe and ddm_d.exe which you can see through task manager under process tab, you can end the processes to end the problem temporarily to get the missing desktop icons and taskbar back.

This adware can get installed on your computer with the following names: Msbb.exe (Adware.Ncase) Optimize.exe (Adware.NetOptimizer) Winpup.exe (Adware.Winpup). Make sure to remove Active Alert under add remove programs if found.

Let’s see how can you remove this adware from your computer to get all the missing desktop icons and taskbar.

Fix:

After properly analyzing the problem of missing desktop icons and taskbar we figured out the two methods to solve it.

Method 1:

Follow the procedure given below to remove the virus or adware completely from your computer

1. Press Ctrl+Shift+Esc to open task manager

2. Click the process tab and end the process named sysu.exe and ddm_d.exe if they are running.

3. Delete the following folders

C:\Programs\ddm
C:\Programs\pup
C:\Program Files\Internet Optimizer

4. Search and delete the following files on your computer

actalert.exe
ddm.exe
ddm_d.exe
msbb.exe
optimize.exe
pup.exe
sysu.exe
winpup.exe

5. Open C:\Windows\System32

and delete all the files that start with a random 7/12 digit number eg. 37473696.exe

6. Press Window Key + R to open run and type regedit and press Enter

and delete the following keys:

HKEY_LOCAL_MACHINE\SOFTWARE\ Microsoft\Windows\CurrentVersion\Run
and/or RunOnce that refers to ddm, *randomnumber*.exe or sysu.exe.

HKEY_CURRENT_USERS\SOFTWARE\ Microsoft\Windows\ShellNoRoam\MUICache
delete the keyfile C:\progra~1\ddm\sysu.exe

HKEY_CLASSES_ROOT\pup.setup

Delete all these folders:

HKEY CLASSES_ROOT\CLSID\{539AFCA0-9542-44F0-A286-9B8857DFD30A}

HKEY_CLASSES_ROOT\CLSID\{F5192746-22D6-41BD-9D2D-1E75D14FBD3C}

HKEY_CLASSES_ROOT\TypeLib\{2C4AC0A2-7DA0-4061-B57A-C292A8F3B109}

HKEY_LOCAL_MACHINE\SOFTWARE\Avenue Media

HKEY_LOCAL_MACHINE\SOFTWARE\\Dynamic Desktop Media

HKEY_LOCAL_MACHINE\SOFTWARE\ddm

HKEY_LOCAL_MACHINE\SOFTWARE\pup

HKEY_LOCAL_MACHINE\SOFTWARE\ Microsoft\Shared Tools\MSConfig\startupreg\Internet Optimizer

HKEY_LOCAL_MACHINE\SOFTWARE\ Microsoft\Windows\CurrentVersion\App Management\ARPCache\Internet Optimizer

HKEY_LOCAL_MACHINE\SOFTWARE\ Microsoft\Windows\CurrentVersion\Uninstall\Internet Optimizer

HKEY_LOCAL_MACHINE\SOFTWARE\ Microsoft\Windows\CurrentVersion\Uninstall\Internet Optimizer Active Alert

HKEY_LOCAL_MACHINE\SOFTWARE\ Microsoft\Windows\CurrentVersion\Uninstall\Internet Optimizer Software Installer

HKEY_LOCAL_MACHINE\SOFTWARE\ Microsoft\Windows\CurrentVersion\Uninstall\msbb

HKEY_LOCAL_MACHINE\SOFTWARE\ Microsoft\Windows\CurrentVersion\Uninstall\nCase

7. Open Internet Explorer navigate to File Menu >> Tools >> Internet Options >> Settings >> View Objects and locate ddm and delete it. I hope I have not missed anything, after following all the steps properly you should be able to remove the virus.

If by any chance windows desktop icons and taskbar disappears due to some other reason then you can try the method 2 to get the disappeared desktop icons and taskbar.

Method 2:

After you log on to your computer press ctrl + shift + esc to start task manager, click File >> New Task and type regedit.exe

Windows Registry window will open up and navigate to HKEY_LOCAL_MACHINE >> Software >> Microsoft >> Windows NT >> Current Version >> Winlogon once, but don’t expand it, Locate shell and change it value to explorer.exe, even if it is explorer.exe already retype it.

How to Convert Snow Leopard Retail Disk to .DMG

Apple released Snow Leopard Retail Disk last week and i hope most of you secured your copy. Recently an iHackintosh fan mailed me and asked me that he has a MacBook Air and his external DVD Drive is damaged. Some of you may facing a corrupted Drive on their MacBook etc. etc. So you will not be able to install the latest Snow Kitty on your Machine. He asked me for any way if he can convert the retail disk in to .DMG (Disk Image) and here is the easy to follow steps to convert Snow Leopard Retail Disk to .DMG with Disk Utility.
Requirements :
  1. A Working OS X Leopard With a DVD Drive.
  2. A retail Snow Leopard Disk.
  3. A memory Stick 8GB minimum.
Step 1). Install Mac OS X 10.6 Snow Leopard Disc in your Leopard.
Picture 1
Step 2). Launch Disk Utility
Step 3). Select the Snow Leopard DVD within Disk Utility
Step 4). Click the “New Image” button at the top
 Step 5). Name the image and put it somewhere you can find it easily (Desktop)

 Step 6). Click OK and wait for the image to be created

That’s it, once Disk Utility finishes it’s task your new .DMG file will be available on your desktop. Now you can transfer it to your MacBook Air with USB Drive.
Picture 5

Install Snow Leopard in VMWARE 7 Windows Edition

How to install Snow Leopard in VMWARE 7 and Windows host ? Virtualization of Snow Leopard (Client) is not officially supported/allowed by any virtualization solution. However a few modifications to the .vmx file and use a modified install disk as this will save a lot of trouble. Let me clear Apple licensing does not allow for the virtualization of OSX Client on any hardware and only allows for the virtualization OSX server on Apple hardware. Anything else is in violation of the license agreement. This article is for informational purposes only, you can never achieve full utilization of Mac OS X on VMWARE. So if you like the Mac then go ahead and buy a Mac.

Requirements
  • VMWARE 7 and Windows XP, Vista or 7
  • Retail DVD of Mac OS X Snow Leopard 10.6
  • Intel Based Machine, AMD isn’t supported.
  • Patience, a Cup of coffee or Energy drink whatever you like.
  • A pre-made Snow Leopard VMDK, dariwn_snow.iso Download (Rapidshare), (Rapidshare 1)(Mediafire) Or (Megaupload)
Instructions
Step One : Launch VMWARE Workstation and load the .vmx that came with the package you downloaded above. Now edit virtual machine settings for advance options.
SL_VMW_1 Step Two : Edit the VMWARE settings eg: Memory, Processor, Networking Adaptors etc. Select CD/DVD drive options and in Connection select Use ISO image file and browse the Darwin_Snow.iso
SL_VMW_2 Step Three : Now power on the virtual machine and keep your finger on F8 key.
SL_VMW_1 Hit F8 very quickly on your Keyboard you will be prompted with the following screen
Capture
Step Four : Like Boot 132 method now you need to replace the boot cd with the Snow Leopard Retail Install DVD. Right click on the CD icon in bottom of the VMWARE windows and click on Settings option.

Capture
Now change the options from ISO image to use physical drive and make sure you have Retail DVD already installed.Capture 2 Save and Exit
Step Five : Now navigate to boot screen and press “C” on your keyboard to select “Boot DVD”, again press F8 for advance options and type -v at the boot prompt then hit enter for booting with verbose mode.
Step Six : Now wait for 2-3 minutes and your Installation screen will appear. Now you can install Snow Leopard as usual.  Before choosing the destination open Disk Utility and erase your Vmware HDD in to “Mac OS Extended (Journaled)” format type. Under customization deselect printer drivers and language translations for trouble free installation.Once installation finishes your virtual machine will reboot automatically.
Step Seven : Follow Step Two again “Select CD/DVD drive options and in Connection select Use ISO image file and browse the Darwin_Snow.iso” now you can boot in to Snow Leopard you may need to force restart 2-3 times if Kernel Panic happens, once machine boot successfully you can set your preference etc.asdd

Known Issues
  1. Some .dmg aren’t opening
  2. Kernel Panic on every shut down so just force shut down after every kernel panic.

Javascript file hints at possible Google Play News feature

The folks over at Android Police did some sleuthing and discovered some surprising tidbits within a Javascript file on Google Play’s website. According to information found within the file, Google is prepping a new feature called “Google Play News,” with various sentences scattered within it indicating that it will offer newspapers in the same way Play already offers magazines and other content.
What kind of information is in the Javascript? Says Android Police, they dug out these phrase: “To read Google Play News, you must have a supported Android phone or tablet.” “Please sign in to get this News edition.” “Please sign in to purchase this News Issue.” “Please sign in to purchase this News Edition Subscription.” “Subscribing you to this news edition…” “You have subscribed to this news edition. It is now available on your device.”
As you can see, there is mention of both subscriptions and issues, indicating that users will be able to either subscribe to a specific newspaper, or to purchase individual issues of one or more papers. There is also a reference to news “Editions,” which are yet unspecified, so we’ll have to wait and see what they mean by that.
Another interesting tidbit was found in a CSS file, which shows that the color yellow will be assigned to the not-yet-available news section in the same way the music, movies, magazines, and such all have their own color assignments. This seems to further confirm the information found in the Javascript file. Aside from this, Google is redirecting to its Magazine pages for news links, and is using Magazine images as placeholders.
[via Android Police]

Javascript file hints at possible Google Play News feature is written by Brittany Hillen & originally posted on SlashGear.

Kaspersky Lab identifies malware MiniDuke



Kaspersky Lab's team of experts recently published a new research report that analyzed a series of security incidents involving the use of the recently discovered PDF exploit in Adobe Reader (CVE-2013-6040) and a new, highly customized malicious programme known as MiniDuke. The MiniDuke backdoor was used to attack multiple government entities and institutions worldwide during the past week, said the lab's press release. Kaspersky Lab's experts, in partnership with CrySys Lab, analyzed the attacks in detail and published their findings. 

MiniDuke's highly customized backdoor was written in assembler and is very small in size, being only 20kb. "The combination of experienced old school malware writers using newly discovered exploits and clever social engineering to compromise high profile targets is extremely dangerous," said the statement issued by the lab. 

It said that the MiniDuke attackers are still active at this time and have created malware as recently as February 20. To compromise victims, the attackers used extremely effective social engineering techniques, which involved sending malicious PDF documents to their targets. 

Once the system is exploited, a very small downloader is dropped onto the victim's disc that's only 20kb in size. This downloader is unique per system and contains a customized backdoor written in Assembler. When loaded at system boot, the downloader uses a set of mathematical calculations to determine the computer's unique fingerprint, and in turn uses this data to uniquely encrypt its communications later. It is also programmed to avoid analysis by a hardcoded set of tools in certain environments like VMware. If it finds any of these indicators, it will run idle in the environment instead of moving to another stage and exposing more of its functionality by decrypting itself further; this indicates the malware writers know exactly what antivirus and IT security professionals are doing in order to analyze and identify malware. 

Who Should Go With iPage Hosting


Now, doesn’t matter what I think about iPage. Question is: Is iPage right for you? Given that there are both pros and cons; negative and positive reviews on the Internet; should you still go with iPage hosting?
The decision is yours to be made.
iPage is truly the Best Budget Hosting in my book. You can’t find any web host offering the same features (and server performance) at this low price. And, as for the negative reviews, well iPage allows customers to cancel their account anytime they want and refund back the remaining fees – so what is there to worry? If you are searching for a cheap, reliable web host; and are considering on iPage – then just go for it! 
Host your Web site with iPage!

iPage Hosting – Benefits


iPage Hosting – Benefits
  • Extremely Cheap As mentioned above, if you are searching for the Best Budget Web Hosting, iPage will be surely come into your radar. Fact is, iPage is extremely cheap. And not that only it is cheap; it’s also reputable and reliable. So if you want a good host at an affordable price, iPage hosting is a go!
  • Anytime Money Back Guarantee Another good thing about iPage is its protective customer policy. Most hosting companies offer money back guarantees for the first 30 to 45 days; but not iPage. All iPage customers are protected by its Anytime Money Back Guarantee. Under this policy, iPage customers get to claim for a pro-rated refund after the first 30 days trial period. In other words, iPage has to work very hard to win business as it is easy for customers to leave the host.
  • User Friendly And Extremely Smooth Ordering Process iPage is perhaps the most newbie-friendly web host. I have purchased iPage twice in the past and both processes were nothing but pleasure. The account setup process was idiot-proof and the ordering process was very smooth. My hosting accounts were ready minutes after payment.
  • Eco-Friendly Hosting According to iPage official website, its hosting operation is fully powered by renewable energy.

Problems With iPage Hosting iPage Hosting – Drawbacks

  • Lack Of Server Upgrade Option Like WebHostingHub, Hostmonster, BlueHost, and many other budget hosting providers; iPage offers nothing but shared hosting services. Although the Essential Hosting Plan is often more than enough for startup websites, users who wish to go VPS or dedicated servers will have to go elsewhere (recommendation: check out WP Engine and Hostgator instead).
  • Expensive Renewal Fees Many iPage users were not aware that the price $3.50/mo is actually promotional price that only available for first time customers. For iPage renewals, the cost is relative higher – $6.99/$7.99/$8.99 monthly for 36/24/12 months term – this often sparks some complaints among iPage customers. However, it’s worth pointing out that the renewal prices are actually more or less the same with what other hosting companies are charging.
Host your Web site with iPage!

iPage Hosting Review


The domain ‘iPage.com’ has been around for more than 10 years but it was not very well known until its recent re-launch in October 2009. Today, iPage stands as one of the greatest successes in hosting industry -The brand took off in late 2009 and went extremely popular in just two short years, ranking top on most of the hosting review sites.
In case you are not aware, iPage is owned and managed by a group of experienced management team – the Endurance International Group (EIG). The EIG has been around for more than 15 years and their hosting platform is currently holding nearly 2 million domain names. The group also owns some other big names in hosting industry, including GoDaddy, FatCow, BlueHost, HostMonster, JustHost, PowWeb, EasyCGI, StartLogic, Dot5Hosting, VPS Link, etc etc. I am not very sure about exact numbers but I believe EIG is one of the biggest web hosting/domain company on earth.
Anyway, who owns the company isn’t that much of our concern. 

Host your Web site with iPage!