LVM With RAID1 In Text Mode Centos Installation

Jun 28, 2009

How can config LVM with RAID1 in text mode centos 5.3 installation?

I need to do it for xen installation.

View 3 Replies


ADVERTISEMENT

Software Raid1 Setup On Centos 5

Dec 4, 2008

How can setup software raid1 on centos 5?

Can you provide any refrence?

I see [url]but i dont know is this need to /boot partition or no? and if need to this, is it must set for raid1 too?

View 6 Replies View Related

OpenVZ APF Installation CentOS

Jul 7, 2008

I installed APF on my CentOS OpenVZ VPS but when I start it the ssh terminal is spammed with this error:

iptables: Unknown error 4294967295

Does anyone know how to fix this?

View 6 Replies View Related

Munin Installation In Centos

Jun 25, 2008

I tried to install cacti, somehow it didn't work out so i decided to install munin. But when i choose munin from plugins list it starts to install than it says

Starting Munin Node: [ OK ]
Can't locate RRDs.pm in @INC (@INC contains: /usr/lib/perl5/site_perl/5.8.8/i386-linux-thread-multi /usr/lib/perl5/site_perl/5.8.7/i386-linux-thread-multi /usr/lib/perl5/site_perl/5.8.6/i386-linux-thread-multi /usr/lib/perl5/site_perl/5.8.5/i386-linux-thread-multi /usr/lib/perl5/site_perl/5.8.8 /usr/lib/perl5/site_perl/5.8.7 /usr/lib/perl5/site_perl/5.8.6 /usr/lib/perl5/site_perl/5.8.5 /usr/lib/perl5/site_perl /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi /usr/lib/perl5/vendor_perl/5.8.7/i386-linux-thread-multi /usr/lib/perl5/vendor_perl/5.8.6/i386-linux-thread-multi /usr/lib/perl5/vendor_perl/5.8.5/i386-linux-thread-multi /usr/lib/perl5/vendor_perl/5.8.8 /usr/lib/perl5/vendor_perl/5.8.7 /usr/lib/perl5/vendor_perl/5.8.6 /usr/lib/perl5/vendor_perl/5.8.5 /usr/lib/perl5/vendor_perl /usr/lib/perl5/5.8.8/i386-linux-thread-multi /usr/lib/perl5/5.8.8 . /usr/local/cpanel/3rdparty/lib/perl) at /usr/share/munin/munin-graph line 225.
BEGIN failed--compilation aborted at /usr/share/munin/munin-graph line 225.
Install Complete (munin 1.2.4)
Done

I did some googling about the error and it is because rrdtool is not installed.

Actually i installed rrdtool 1.3.0 from its website it was in /usr/local/rrdtool

Anyway i clicked install a rpm from whm and choose rrdtool.i386

root@server # rpm -qa | grep rrd
rrdtool-1.2.23-6.fc6

But it is still giving error above when i try to install munin

View 9 Replies View Related

Centos 5 Installation Froze

Jan 19, 2008

I'm trying to install Centos 5 64bit with 8GB RAM and 4 SATA hard drive... But it keeps getting stuck at the screen menu: Select the appropriate keyboard for the system.

View 5 Replies View Related

Mytop Installation On Centos VPS

Jul 15, 2008

I just can't make Mytop work on my Centos VPS. Looks like I made some perl problem. Is there any good working installation tutorial?

View 10 Replies View Related

Vpopmail Installation In Centos 5 Server

Apr 24, 2009

We like to create the mail accounts through php scripts in mywebsite.com website. So we request you to setup the Qmail with Vpopmail server in our server. As we have the following packages are already installed.

1. Qmail
2. Courier POP/IMAP
3. Horde Webmail client

Please install the vpopmail in the ourserver and configure these four packages to create the mail accounts via php script. So that we can use vaddsuer command in php to create the mail ids annd also imap_open commands to access the mails.

Our server is configured with Plesk control panel.

The installation is very urgent, as our website is going live sooner.

I will make the decision sooner and let us know the cost, as it will be given to the provider sooner.

View 0 Replies View Related

CentOS 5 Minimal Package Installation

Apr 27, 2008

I got this new server with FDC today, I asked for CentOS 5 minimal package installation, when I got the server I checked with rpm -qa |wc -l and seeing 572 packages. I have other CentOS 5 servers running with only 220 packages installed. So I asked the tech to reinstall it but he says the install is as minimal as the default install will allow. it doesn't seem right to me,

View 8 Replies View Related

My CentOS 5 Bind Installation Commands

Dec 15, 2007

if after doing the following and transferring my domains to the server, they will functions properly as far as BIND setup is concerned. This will also serve as installation instructions for others if you can verify that this is all good.

I have installed BIND9 and setup DNS with the following:
------------------------------------------------------------------------

yum install bind-chroot

chmod 755 /var/named/
chmod 775 /var/named/chroot/
chmod 775 /var/named/chroot/var/
chmod 775 /var/named/chroot/var/named/
chmod 775 /var/named/chroot/var/run/
chmod 777 /var/named/chroot/var/run/named/

chown -R named /var/named/chroot/etc

chown -R named /var/named/chroot/var

cd /var/named/chroot/var/named/

ln -s ../../ chroot

cp /usr/share/doc/bind-9.3.3/sample/var/named/named.local /var/named/chroot/var/named/named.local

cp /usr/share/doc/bind-9.3.3/sample/var/named/named.root /var/named/chroot/var/named/named.root

touch /var/named/chroot/etc/named.conf

chkconfig --levels 235 named on

named.conf now contains:

Code:
options {
pid-file "/var/named/chroot/var/run/named/named.pid";
directory "/var/named/chroot/var/named";
query-source address * port 53;
allow-query { any; };
recursion no;
};

zone "server.mydomain.com" { type master; file "server.mydomain.com.db"; };
zone "mydomain.com" { type master; file "mydomain.com.db"; };
zone "mydomain.net" { type master; file "mydomain.net.db"; };
Upload named.conf to /var/named/chroot/etc

Modify /etc/resolv.conf to have the following before its current data:
search mydomain.com
nameserver 127.0.0.1
nameserver 78.129.143.155 // Replace this with the server's IP
// So below these there should be one or more nameserver $ip that point to the ISP's name servers so that the server can download stuff.

Modify /etc/host.conf to become the following:
order hosts,bind
multi on
nospoof on

Modify the files mydomain.com.db and mydomain.net.db and server.mydomain.com.db
to have the correct IP address. (These are DNS zone files that I'm sure are correct so I don't need you to confirm those.)
* Upload them to /var/named/chroot/var/named

/etc/init.d/named start

View 10 Replies View Related

Vpopmail Installation On Centos 5 Dedicated Server

Apr 24, 2009

We like to create the mail accounts through php scripts in mywebsite.com website. So we request you to setup the Qmail with Vpopmail server in our server. As we have the following packages are already installed.

1. Qmail

2. Courier POP/IMAP

3. Horde Webmail client

providers who install the vpopmail in the our server and configure these four packages to create the mail accounts via php script. So that we can use vaddsuer command in php to create the mail ids and also imap_open commands to access the mails.

We will take the decision sooner since we need to live the website shortly.

Our server is configured by plesk control panel.

View 2 Replies View Related

Plesk 12.x / Linux :: CentOs 7 After Installation Webpage Not Accessible

Sep 26, 2014

I'm just testing Plesk 12 on CentOs 7 and after installation is succesfully completed, I cant access [URL]

This is the environment and steps which I taken:
* Fresh CentOs 7 iso
* Windows 2008 R2 Hyper-v hypervisor

1) Installation of the CentOs successfully completed
2) Yum update
3) Download auto-installer
4) Run auto-installer
5) process successfully completed
6) NOW I CAN'T access the url ...

View 18 Replies View Related

RAID1

Mar 11, 2007

I never use RAID1, but consider to use RAID1 server.

Let's say one hard drive failed and the DC replaced it with the new one, I was wondering if the system will automatically copy the data into the new drive or we should do some commands to copy the data into the new drive?

View 2 Replies View Related

Performance Of 2 X 1TB RAID1

Feb 7, 2009

I have to leave the Supermicro servers and use only Dell. I have this question.

There is a big difference in performance between these two RAID configurations?

Dell - 2 x 1TB RAID1 PERC6

Supermicro - 4 x 500GB RAID10 3ware 4 port

It is for use with webhosting.

View 14 Replies View Related

Additional H.D.D And RAID1

Nov 28, 2008

I have 2*400gb H.D.D on my server.

I have run RAID1 (software) on my server. Is it posible to disable RAID1 and use secondary 400gb H.D.D as additional H.D.D (800gb) and add another 1000gb H.D.D on my server and run RAID1 on server again? For have mirror data as RAID1 in 1000gb H.D.D

View 8 Replies View Related

RAID1 Or RAID5? Which Is Best

Jul 30, 2008

What do you feel is better for a typical shared/reseller hosting server?

RAID 1 or RAID 5 (with three drives)?

View 12 Replies View Related

Raid1 Partition

May 26, 2008

If this is not in the right forum for this... I'm sorry didnt knew where else it may go.

I have to build a new server with RAID 1 and WHM/Cpanel installed (in fact i dont have to, but i need to learn ASAP and my boss gave me an old server for practice).

I've seen the installation guide of cpanel but the sizes of the partitions apply to a disk of 80 GB (i think so) so is there any way to calculate the size of the partitions, regardless of disk size? cuz mine are of 250 gb each.

I'm trying to install it on centos 5 on text mode, so far i have been able to successfully install the system (with partitions of any size... since is a test doesnt matter) with RAID 1.

After that i ran cat /proc/mdstat and in some partitions shows me this

Rsync=Delayed

I've read in some places that this is not a big issue... but in other places says it is... maybe i did something wrong

View 2 Replies View Related

How Do We Configure RAID1

Aug 7, 2007

I would like to configure RAID 1 setup. Do I need extra hardware or if I have 2 hard drives can I set it up?

View 3 Replies View Related

RAID1 On Freebsd

Oct 1, 2007

I plan to install one server with RAID with that run on a dedicated card which support FreeBSD. As i have not much experience in this,

View 4 Replies View Related

RAID0, RAID1, RAID5

May 30, 2008

Which to choose? RAID0, RAID1 or RAID5?

how can explain what is the best one and why?

View 13 Replies View Related

3ware Raid1 + Xen = Slow Disk Access

Jan 29, 2007

I have configured a Xen setup on a dual xeon system with a 3ware 8506 2 ports sata controller.

Array is configured in raid1 and I am using LVM.

I get really slow accesses on the virtual machines, when I create a big ext3 system, the system is nearly freezing.

View 2 Replies View Related

Typical Read/write Speed For Software Raid1

Dec 21, 2008

I just got 2 dedicateds, and while creating software raid 1, upon initial sync up I'm getting around 7 megabytes per second (6700 kb/s) in write speed I assume.
This is a quad core, sata2 setup...

View 3 Replies View Related

No HW Raid - FreeBSD Gmirror (soft-raid1) As Best Practice For Data Integrity?

Jul 30, 2006

Dedicated server has 2 HDD but I am not going to pay another $25/month for the hardware RAID solution (already stretched too far).

My plan is to install FreeBSD 6 and use Gmirror to establish a raid-1 "soft" mirror.

Advantages: Entire drive is mirrored including the OS. Drives can be remotely inserted or removed from the mirror set using a console command so its possible to uncouple the mirror and perform software updates on a single drive then re-establish the mirror only after the updates have proved successful.

Disadvantages: Lower I/O than hardware solution (not a problem for me) others???

I rarely see people consider software raid for a tight-budget server and I am wondering why? Could it be that other OS's dont have a solution as good as gmirror? Or is it just that crappy soft-raid in the past has left a bitter taste in admins mouths? Or perhaps admins need the extra I/O of hardware?

View 3 Replies View Related

Text Only Site

May 1, 2007

Say, I have a page:

say in the website of index.html there are things like

<img src="somepics.jpg">

Is there a way to set in .htaccess that we can ensure that only index.html is called?

So I do not want the client to call every image and every css file there?

How to do so?

View 5 Replies View Related

Scrambling Text For Security

Jan 2, 2007

I have a link on a site as follows: destinationsite.com/index.php?kw=test

This url is obviously going to appear in the browser window's Address bar, when the person reaches the destination page.

Is there any way to have it change the url so that the kw=test does not appear? Please bear in mind that I will not be able to change the link that the person clicks since it is with an advertising company.

View 3 Replies View Related

Text In All Files On Your Server

Apr 12, 2007

my whole site is secure and inside a secure folder and I am going to be moving the majority of the site over to a non-secure folder. but I need to find all the absolute links and change the https to http. I hope I dont have to check each page one by one.

so I was wondering if there was a way to search everypage on my server for any file containing "https"?

View 1 Replies View Related

Adding Text To Video In Linux

Jun 19, 2008

way to convert and add some text(watermark) to videos in Linux.

I know ffmpeg can be used to convert video but i does not add text or water mark to video.

So what are my options?

View 3 Replies View Related

How To Truncat Elines In A Text File

Sep 19, 2007

I have a large text file (its a log file actually) and I need to truncate each line to abou 16 characters.

how I can do this in linux?

View 2 Replies View Related

SSH Command To Record Name Of Files That Contain Certain Text

Jun 26, 2007

I have had multiple websites hacked and need to do a cleanup. I need to run a command that will log all files (including path to that file) that contain <!-- ~ --> to a text file from the /home/* directory.

So far I have recieved 2 different ways to do it but none of them have worked

View 5 Replies View Related

Find & Replace Of Text For Security...

Jul 25, 2007

My old VPS was hacked and an iframe html string was added to just about all the files on the server.

I've since then identified the vulnerability and moved to a new host and want to copy the accounts over but wanted to know if there was an easy way to search all the files for this html code and delete it?

For example, search all files for <iframe etc etc> and delete it?

I know this is probably rather simple...but I have no idea how to do it.

View 2 Replies View Related

[Review] NearlyFreeSpeech.net (warning: Wall Of Text)

Jan 10, 2009

I've been meaning to get around to this for quite some time now, and since I've got some free time I figured I'd review NearlyFreeSpeech.net

Length of time with host: 4+ years
Sites hosted: 5 (+/-)

Basically, I couldn't be happier. They're pretty much everything that shared hosting should be. They don't oversell. They don't sell your information to advertisers. And they've got several "killer features" that few (if any) other hosts offer.

Pros

Performance

Unlike some (most?) shared hosts, they don't cram a bunch of sites onto the same server. In fact, they don't even assign you a server per se. All sites are hosted on clusters, so the most active sites will be handled by several servers working in tandem. The load balancing is automatic transparent -- if your site starts getting a load of traffic, their servers will shift your site around as necessary to ensure that it remains responsive. This process isn't noticable at all; every aspect of their service feels like a traditional shared hosting setup, the sole exception being that performance doesn't suck. Wordpress and phpBB (notorious for bringing most shared hosting plans to their knees) feel snappy and responsive, even when faced with large amounts of traffic.

Reliability

They're not perfect, but they're close. I've used several other shared hosts over the years, and I can safely say that NFSN is the most reliable of all of the ones that I've used. Again, I think this has to do with their clustering setup. I've never been told "sorry, but someone on your server crashed Apache". They do get hit with DDoS attacks from time to time (as do all hosts), but it's exceptionally rare for said attacks to cause a disruption of service. When large scale attacks do occur, they handle them quickly and professionally. There have been a handful of large-scale failures over the time I've been with them, but disruptions of service are few and far between.

Language Support

Pretty damn good. I'd say they're best at hosting PHP/MySQL sites, but they're very, very good with all of their officially supported CGI languages [url] too.
They'll also install libraries, PEAR modules, etc. upon request, even if it's something that nobody other than you will ever use.

Support

Support is second-to-none. Support is conducted via their administrative control panel. Although they do have official hours, it's not unusual to have your question answered quickly even at some ungodly hour of the morning. All the support staff are top-notch, and they all *definitely* know their stuff. They don't hand-hold as much as most hosts, but if you're reasonably competent and/or not afraid to learn you won't have any trouble. They've also got a panic button feature that I quite like -- from their write-up about the feature:

After you hit the panic button, a ticket will be opened at "Panic" priority including the text of your message. The on-call admin will also be immediately paged with the text of your message. Then, one of three things will happen:

-If you hit the panic button for a legitimate, previously-unreported system or network outage that needs our immediate attention, we will change your issue to "High" priority, refund your panic message charge, and cut the cost of your next panic message in half.

-If your message does not pertain to a legitimate problem or outage that needs our immediate attention, we will change your issue to "Standard" priority, you will not receive a panic message refund, and the cost of your next panic message will be doubled.

-If your message is clearly spurious ("Haha lolz I paged u!") it will be ignored and your ability to send panic messages will be revoked. You will not receive a panic message refund.

Free speech / censorship

Hands down, they make other hosts look like jokes. I've managed several controversial sites over the last four years, and NearlyFreeSpeech.net is the ONLY host who hasn't hassled me.

The best thing I can do to promote their service is to point you to their beliefs ([url] page. Yep. No mission statements... just three simple quotes. And they really do believe in those values.

They even go as far as to say this in their FAQ:

You must obey all applicable local laws unless you get our prior express consent in writing. We do provide anonymous hosting of content that violates local government censorship laws at our sole discretion in cases outside the United States where we feel government censorship is contrary to the cause of freedom.

Quite a departure from most shared hosts. Even more (and yes, I speak from experiene when I say that they really do hold to this):

A NearlyFreeSpeech.NET member site is defaming me or otherwise injuring me civilly.

Please forward a copy of your legal finding from a court of competent jurisdiction to our contact address. If you have not yet obtained such a finding, a preliminary injunction or court order is also sufficient.

If you are not able to obtain the above, you will need to work directly with the site operator to resolve your differences. We will have to fall back on our members' contractual assertion that the content they upload is legitimate and therefore we will not be able to get involved.

This quote really sums up their stance:

A NearlyFreeSpeech.NET member site contains offensive content.

At NearlyFreeSpeech.NET we firmly believe that censorship is a dangerous and misguided approach to the problems of society. We believe that the price we pay for the huge number of fantastic sites we host are a few sites that we feel are significantly less fantastic.

We believe that the price you pay for living in what we hope is a free society is that when you encounter something offensive, you must resist the urge to censor it and instead research, investigate, and speak out passionately in opposition to it. That is the essence of free speech.

Please do not send us abuse complaints of this nature. We will discard them.
DMCA

Ah yes. Everyone's favorite. Fortunately, NFS is sane about this (far more sane than some uh... "dreamy" hosts I've used...). Again, another excerpt from their FAQ (which I can also attest is true):

We adhere to the entire law very closely. We do not generally pull the plug on an entire site if, for example, someone claims that a single graphic is infringing. We do our best to remove only the content that the copyright owner specifically identifies as allegedly infringing. We allow and encourage the use of the "putback notification" process when material is incorrectly identified as infringing. But we do not automatically terminate a member's service merely for receiving a complaint alleging infringement. (However, actually infringing someone's copyright does violate our TACOS and will generally result in immediate termination.)

Keep in mind that while we aren't lawyers, neither are we idiots. We can tell the difference between people harassing our members via the DMCA and cases where our service is genuinely being misused, and we can adjust our attitude accordingly. Fortunately, both of these cases are very rare.
Cost.

This one's a big issue for folks on shared hosting, so it's worth going over. Basically, NFSN uses a pay-per-use model. Simply put, you pay for the resources you use. This does mean that you won't be able to "game the system" and hope to get away with a high-traffic site on an oversold server for a couple bucks a month. This also means that the system won't game you, and put your high traffic site on an oversold server. Most importantly, it means that you don't pay for what you don't use. Those 1000GB for $10 plans seem like a great idea until you realize that if you only use 1GB you're getting royally screwed.

Pricing is a little unconventional, so it's worth going over in a bit of depth:

Bandwidth

Bandwidth starts at the price of $1/GB. This may seem steep if you compare them to the prices promised in the ads of various heavily-oversold shared hosts. Fortunately, it's not a flat rate. In fact, the more bandwidth you use, the lower your per-GB charge is --and the discount is permanent. They've got a bandwidth calculator [url] if you're curious about pricing.

Storage

$1/100MB, flat fee.

MySQL

$0.01/day IIRC. Their MySQL servers are top notch FreeBSD 7 boxes, and I definitely think they're worth the price.

E-mail forwarding

$0.01/day. You can obviously use your own e-mail servers instead, or use something like Google Apps -- but if you want them to do e-mail forwarding it costs $0.01/day with no usage cap. (And yes, I do mean no usage cap. Bugmenot.com uses NFS's e-mail servers for their "disposable mailbox" service, and they have a heck of a lot of inbound mail.)
Privacy

Wow. Short of bribing an off-shore host, I don't think you'll find a more private arrangement. Unless they've got a court order demanding your details, you can safely assume that they won't be divulged. Again, I speak from experience.

Also interesting to note is this excerpt from their FAQs:

At NearlyFreeSpeech.NET, we believe that with great power comes great responsibility, so we take a dim view of such behavior. For that reason, our TACOS require our members to provide complete and correct contact information, and requests for anonymous hosting are typically denied.

However, we do make one important exception. If you live outside the United States and can demonstrate that the site you wish to host would put you at significant, legitimate risk of retaliation from a government with a documented track record of reprisal against people who speak out against it, we may be able to help. Anonymous hosting is serious business; it can be one component of a coordinated plan to protect you and your family from torture and murder. It's absolutely not an option you can use to dodge lawsuits or unpopularity arising from hosted material.

I haven't (thankfully) had to depend on that level of privacy protection -- but if I did, I wouldn't hesitate to work with them.

SFTP/SSH access

Name says it all.

Scalability

To quote 'jdw', one of the founders of the service, in response to a user's questions re: scalability:

It depends. If all you need is bandwidth, it should be pretty well unlimited. There have been a couple of cases where we have asked people to move on based on CPU usage, but those involved specific situations where they had a poorly-tuned application and couldn’t or wouldn’t optimize it for the load they were getting. Those were also before the days of 8-core cluster nodes.

A VPS or single dedicated server would definitely not be able to serve more bandwidth. Most of them are capped to 10 or 100Mbps; our load-sharing architecture can serve a single site into multiple Gbps if the site is fast enough (i.e. static content) and you can pay for it.

When they mention CPU usage, it's worth noting that it's nothing like Dreamhost and other shared hosts. You just won't hit it unless you've got a bug or you're trying to do something like calculate pi to a billion places. The limits that are in place are solely to prevent runaway/buggy apps from screwing things up -- you won't hit them, even with heavy usage, provided your site's software is functioning correctly.

Cons:

To be honest, there aren't many. There are some though, so in the interest of completeness, here they are:

No SSL

The reasons for this are varied, and they're actively working to implement a solution. The short story is that, due to the architecture of their service, it's not quite as simple as "drop in a cert and tweak the httpd config". Essentially, since they don't assign static IPs for individual sites, they can't support SSL until all mainstream browsers support the SNI extension.

No overselling

Some people may think the lack of "unlimited bandwidth for $7.99/mo" is a con. Others think "unlimited bandwidth for $7.99/mo" is a con. Depends on your perspective and usage I guess.

No Ruby on Rails

Doesn't bother me, but it might be a deal-breaker for someone I suppose.

Not your bog-standard cPanel + Linux box setup
Some folks would say that this is a con, due to the lack of familiarity. Their control panel is different than a lot of hosts, but it's flexible, clean, and responsive, so it's fine for me.

Perks

One thing I've come to notice over 4+ years with NFS is that there are lots and lots of nice little features that aren't advertised, but that make life just a little easier.

Examples:

E-mail to POST

Their mail forwarding can be configured to POST incoming messages (complete with attachments) to a specified URL. The format of this submission is documented on the member wiki.

Member wiki

Contains member-submitted documentation of NFSN's quirks, some of its special features, and how to best get different apps working on NFSN.

Management API

I haven't played around with it, so I can't provide too many details, but NearlyFreeSpeech offers a public API to allow for the programmatic management of user memberships, sites, DNS records, etc. Pretty cool, and not something I've seen elsewhere.

Domain registration

Cheap domains, simple registration process, and (unlike GoDaddy) they don't screw around with your registration just because you said something that they didn't like.
Haskell support

If you know what this is, you know why this is sweet ;-)

Member forums

Not terribly unique, but a great resource. Pretty much everyone there is quite friendly and happy to help new users.

Free trial

You can create a trial membership. This membership comes with $0.02 (IIRC) credit, and is a great way to tinker with their platform before depositing money.
You can get a refund

Sweet. Never had to use it though, but good to know I could if I had to.

Humor

A little thing, yes -- but it's good to see a host that actually seems like it's staffed by real people rather than bash scripts and stock photos.

Member/staff interaction

This is something I haven't seen with any other hosts. The staff interact with the users on the discussion forums. When a user asks "why do you do/say X", they get a response. They have discussions on why they decided to do/say X. Members ask for Y to be available through the web control panel, and some time later a staff member bumps the thread to point out that Y has been implemented.
---
Verdict
If you need shared hosting, you'd be doing yourself a disservice by not trying NearlyFreeSpeech.net

View 14 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved