Code Newbie
News     Forums     Search     Members     Sign Up    

My Code Newbie
Username

Password

Articles/Snippets
ASP Classic
ASP.NET
C
C#
C++
HTML / CSS
Java
Javascript
Linux / BSD
Perl
PHP
Python
Ruby
SQL
VB 6
VB.NET

C.N. Friends
  Planet Rome

Link to Us!
Code Newbie
  Code Newbie
    forums

Go Back   Code Forums > Code Newbie > Lounge

Reply
 
LinkBack Thread Tools Display Modes
Old 07-22-2002, 01:27 PM   #1 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,471
sde is on a distinguished road
my website is hosted 85 ft below ground in a salt mine

hehe, .. yeap. for reals: http://www.vilitas.com/company/data_center.php?shot=1

i found an incredible host. i signed up with www.vilitas.com and i'm happy i did.

as soon as my credit card approved, it kicked me into their control panel. instantly my account was active.

1gb, 10 domains, unlimited mysql db and emails, php, ssl, and ssh for 24/mo .. and they have smaller plans too.

i sent 2 emails to their support, .. i got a reply from a real person within 5 minutes that fully answered my multiple questions.

i also inquired about their bbs policy and they made it very clear they don't like cgi-based forums.. php/mysql forums such as this they have no problem with.

i just wanted to post this cause we were talking about them in the irc chat the other night. i'm very happy so far.
sde is offline   Reply With Quote
Old 07-22-2002, 04:32 PM   #2 (permalink)
bdl
Senior Contributor
 
Join Date: May 2002
Location: vta.ca.usa
Posts: 555
bdl is on a distinguished road
LOL, yeah, I signed up yesterday also; I noticed the underground tunnels leading to the data center, kind of ideallic, really. Thanks for checking into the forum issue; I figured it might have been cgi based forums and not PHP, since they tend to run lighter, but it's good to know.
bdl is offline   Reply With Quote
Old 07-23-2002, 07:14 AM   #3 (permalink)
Admin
$_['Your_Mom'];
 
Admin's Avatar
 
Join Date: May 2002
Location: Santee
Posts: 627
Admin is on a distinguished road
let me know how they work out for you guys... they seem pretty new (i havent read there entire website yet)....

blah blah balh.
__________________


Urban Clothing
Admin is offline   Reply With Quote
Old 07-23-2002, 07:34 AM   #4 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,471
sde is on a distinguished road
all i know is the support is dope!

i was using the shell and i noticed that tab-completion wasn't working .. i wrote an email late last night asking why. apparently, freebsd uses the bourne shell as it's default. he set me up with a bash shell so tab-completion and history now works.
sde is offline   Reply With Quote
Old 07-23-2002, 08:10 AM   #5 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,471
sde is on a distinguished road
also my nameservers changed within 24 hours .. this could be do to who i use for my dns service though .. bdl's is taking longer.
sde is offline   Reply With Quote
Old 07-23-2002, 11:20 AM   #6 (permalink)
Admin
$_['Your_Mom'];
 
Admin's Avatar
 
Join Date: May 2002
Location: Santee
Posts: 627
Admin is on a distinguished road
whoa whoa whoa... they give you shell????
__________________


Urban Clothing
Admin is offline   Reply With Quote
Old 07-29-2002, 03:17 PM   #7 (permalink)
w00t
Totally Inept
 
w00t's Avatar
 
Join Date: Jul 2002
Location: The Great Northwest
Posts: 195
w00t is on a distinguished road
The word overkill comes to mind, but it looks sweet :rock:
__________________
Office Space:
Best Movie.
Ever.

Contrary to popular belief, the true function of a programmer
is to turn coffee into source code.
w00t is offline   Reply With Quote
Old 07-29-2002, 10:03 PM   #8 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,471
sde is on a distinguished road
i will use it all .. i almost need more domains
sde is offline   Reply With Quote
Old 08-03-2002, 08:59 PM   #9 (permalink)
abc123
bloomberg
 
abc123's Avatar
 
Join Date: Jun 2002
Location: bloomberg
Posts: 263
abc123 is on a distinguished road
Send a message via AIM to abc123 Send a message via Yahoo to abc123
Re: my website is hosted 85 ft below ground in a salt mine

Quote:
Originally posted by mmilano


i also inquired about their bbs policy and they made it very clear they don't like cgi-based forums.. php/mysql forums such as this they have no problem with.
cgi = common gateway interface

.cgi = perl script

they don't like "perl-based forums"

you can't have a forum unless it is cgi based...
__________________
-- bloomberg.
abc123 is offline   Reply With Quote
Old 08-03-2002, 10:13 PM   #10 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,471
sde is on a distinguished road
so what you are saying is that every php script is cgi-based?
sde is offline   Reply With Quote
Old 08-03-2002, 11:06 PM   #11 (permalink)
abc123
bloomberg
 
abc123's Avatar
 
Join Date: Jun 2002
Location: bloomberg
Posts: 263
abc123 is on a distinguished road
Send a message via AIM to abc123 Send a message via Yahoo to abc123
http://hoohoo.ncsa.uiuc.edu/cgi/intro.html

basically all data that the scripts process (like this message) must be passed to the script somehow, the interface that allows this is refered to as CGI, so yes, all your php scripts use the CGI.

the reason some webhosts may not like PERL scripts (.cgi) is because they create a new process each time they are run, whereas asp, (and i guess php) doesn't, so its less strain on the server
__________________
-- bloomberg.
abc123 is offline   Reply With Quote
Old 08-03-2002, 11:36 PM   #12 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,471
sde is on a distinguished road
aah, thanks abc123 =)

it's nice to see you around . .

i appreciate the insight
sde is offline   Reply With Quote
Old 08-04-2002, 11:33 AM   #13 (permalink)
sdeming
Code Monkey
 
Join Date: Jul 2002
Location: Michigan
Posts: 85
sdeming is on a distinguished road
Hello,

Just to clarify, typically CGI invokes a new process for each access, whereas with mod_php this isn't the case. With mod_php the data is passed inline to the PHP processor via the apache module interface, similar to CGI but not. There are ways to speed up CGI processing such as FastCGI, and if you are using perl mod_perl though these are inherently insecure in a shared hosting environment.

BBS's and Forums generally create a lot of traffic and can eat up CPU cycles real fast when they are executed via CGI and not the Apache module interface. Quite honestly, all of the really good forums are written in PHP/MySQL anyway.
__________________
Scott
B4 09 BA 09 01 CD 21 CD 20 53 63 6F 74 74 24
sdeming is offline   Reply With Quote
Old 08-04-2002, 01:31 PM   #14 (permalink)
kenshi
Registered User
 
kenshi's Avatar
 
Join Date: Jun 2002
Location: Antarctica
Posts: 43
kenshi is on a distinguished road
Send a message via ICQ to kenshi
Quote:
Originally posted by mmilano
i was using the shell and i noticed that tab-completion wasn't working .. i wrote an email late last night asking why. apparently, freebsd uses the bourne shell as it's default. he set me up with a bash shell so tab-completion and history now works.
To clarify, FreeBSD defaults to Bourne shell for regular users and csh for root (which has auto-competion). To change your shell, you would simply run chpass and change shell to /usr/local/bin/bash or whatever suits your mood. (Does Linux have a way for non-root users to change their default shell? I think not.)
kenshi is offline   Reply With Quote
Old 08-04-2002, 02:09 PM   #15 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,471
sde is on a distinguished road
i have the freebsd 4.6 install cd here screaming at me "install me .. install me now" =) all this bsd talk is gonna make me do it.

in a couple more weeks i'll make the switch.
sde is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 09:20 PM.


Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.0.0 RC8





Copyright © 2000-2008, Milano Interactive
Web Hosting provided by Portal 360 Web Hosting