Yeah, this was officially announced at iserver 3-4 weeks ago. It's been in beta
testing for months.
I would say that the only weird thing about it is that they only give you one
server config so a lot of the lightweight front-end, heavyweight-perl back-end
stuff in the guide is a bit useless for iserver.
I don't know if the same issues exist for other "generic" mod_perl virtual server
hosting packages. But it is something to watch for if the intent is superfast
performance of your website (as opposed to just fast).
However, it definately does speed things up. And they have an interesting virtual
server model with a lot of value-added features (eg browsable backups you can
restore yourself) that you have to email a sysadmin at most small ISPs to help
you with manually.
Later,
Gunther
Ron Pero wrote:
> I haven't used it, but a friend mentioned that iserver has virtual servers
> on which you can configure mod_perl. http://www.iserver.com/
>
> At 01:26 PM 04/12/00 -0400, Gagan Prakash wrote:
> >Hello,
> >
> >I have been looking for mod_perl virtual web hosting companies who have fast
> >servers and good infrastructure but the two I have found so far have either
> >had problems with their mod_perl setups (they installed the module, did not
> >change apache configs or changed them incorrectly) or have been very slow.
> >These two are www.123hostme.com or www.olm.net.
> >
> >I would greatly appreciate if somebody could point me in a better direction.
> >
> >Thanks
> >Gagan
> >
> >
> >********** Web App Development Needs? ***************
> > Contact OSATech today! http://www.OSATech.com
> >***************************************************
> >
> >----- Original Message -----
> >From: "Jason Murphy" <[EMAIL PROTECTED]>
> >To: "Doug MacEachern" <[EMAIL PROTECTED]>
> >Cc: <[EMAIL PROTECTED]>
> >Sent: Wednesday, April 12, 2000 1:09 PM
> >Subject: Re: $r->args troubles...
> >
> >
> >>
> >> You would have guessed right. However, the problem was two fold in my
> >case.
> >>
> >> First, I was not calling Apache::Request correctly. The proper method to
> >> call Apache was told to me by Doug Kyle (Giving credit where due!). Below
> >is
> >> how it is done.
> >>
> >> <--- Begin Example
> >>
> >> my $r = Apache->request;
> >> my $apr = Apache::Request->new($r);
> >>
> >> my %params = $apr->args;
> >>
> >> print $params{"Player"};
> >>
> >> <---- End Example
> >>
> >> The 'print $params{"Player"}' would be used to get and print something
> >like
> >> the parameters from the URL of a GET like
> >> "www.example.com/find_player.pl?Player=Mullen" (Not a real site, dont
> >> click!).
> >>
> >> Second part of my problem was that I had an error in my Apache::Registry
> >> setup in Apache.conf or perl.conf (Can't remember where I put it). The
> >> script I was running was not being picked up by Apache::Registry and thus
> >> not working.
> >>
> >> Thanks for everyone's help.
> >>
> >> PS. The only reason I say this on the mailing list is to get it in to the
> >> mailing list archives because I could not my solution there when I looked.
> >>
> >>
> >> From: "Doug MacEachern" <[EMAIL PROTECTED]>
> >> To: "Jason Murphy" <[EMAIL PROTECTED]>
> >> Cc: <[EMAIL PROTECTED]>
> >> Sent: Tuesday, April 11, 2000 8:52 PM
> >> Subject: Re: $r->args troubles...
> >>
> >> > On Fri, 7 Apr 2000, Jason Murphy wrote:
> >> > > Can't locate object method "new" via package "Apache::Request" at
> >> > > ./find_player.pl line 10.
> >> >
> >> > that would normally indicate your script is running under mod_cgi, not
> >> > mod_perl.
> >> >
> >> > > my $r = new Apache::Request; <---Where the error appears
> >> >
> >> > in any case, you need to change that to:
> >> >
> >> > my $r = Apache::Request->new(shift);
> >> > or
> >> > my $r = Apache::Request->new(Apache->request);
> >> >
> >> >
> >>
> >> --
> >> Jason Murphy
> >> System Administrator
> >> Lawinfo.com
> >> 1-800-397-3743 ex: 133
> >>
> >>
> >>
> >
> >