Real Global Solutions

Where knowledge you can get ?

Archive for the ‘Linux’ tag

what art most important features to look for in a web hosting service?

with 10 comments

I am new at web design, and in the process of trying to find a good web hosting service. I plan on having lots of videos and photos on my sites, and was wondering what kind of features are the most important for me to be looking for when searching for a web host. Are some servers faster than others? If so, which are the fastest? And is it better to go with a windows or linux server? Are there any other important features that I need to look for? Thanks in advance for any suggestions!

Written by admin

August 14th, 2009 at 9:49 pm

Whats the difference between Linux web hosting and Windows web hosting?

with 2 comments

Heya Please tell em what the difference is between linux web hosting and windows web hosting. I made my site by dreamweaver does that affect either of the 2 i should choose please tell me thanx!

Written by admin

August 12th, 2009 at 7:24 am

Wget Version Problem

without comments

We need to bring something to your attention. Users of Fedora Core 5, 6, CentOS 5 or Red Hat Enterprise Linux 5 are in for a rather sour and unpleasing treat.

Unfortunately, this is the reason for this blog post - and this is the reason we had such a tough time installing Fantastico, it just didn’t want to install! Well, I quickly learned of this “bug”, and I found a fix. The problem was the wget feature, and its version. Apparently, the newer ones (already installed on most servers) do not work as they’re supposed to. We’ll be replacing whatever version we have - with a known working version; wget-1.10.2-3.2.1

So, here are the install instructions. Simply pull out SSH, and run the following command as root:

For 32-bit:

rpm -qa wget ;
wget ftp://ftp.funet.fi/pub/mirrors/ftp.redhat.com/pub/fedora/linux/core/5/i386/os/Fedora/RPMS/wget-1.10.2-3.2.1.i386.rpm
chattr -ia /usr/bin/wget
rpm -e wget ;
rpm -ivh –force wget-1.10.2-3.2.1.i386.rpm ;
rpm -qa wget ;

For 64-bit:

rpm -qa wget ;
wget http://download.fedora.redhat.com/pub/fedora/linux/releases/7/Everything/x86_64/os/Fedora/wget-1.10.2-15.fc7.x86_64.rpm ;
chattr -ia /usr/bin/wget
rpm -e wget ;
rpm -ivh –force wget-1.10.2-15.fc7.x86_64.rpm ;
rpm -qa wget ;

Lastly, we’re going to add wget to yum.conf so that the OS doesn’t reinstall another version of wget over our working version - through one of its updates.

Let’s get to it:

nano /etc/yum.conf

Find the line exclude= and add “wget*” at the end (on the same line). Please ensure that wget* is not on its own line - this will seriously break yum.