intermedia.net

2008-01-31 Thread Brian Peddle
I currently have 10+ boxes at HostMySite but we are looking to have a 
small footprint at another facility in case of a major issue there.  
Does anyone have any feedback on intermedia.net?

Thanks

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:297828
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: intermedia.net

2008-01-31 Thread Scott Slone
I've used them and have only had one or two minor issues in the past  
5 years. I currently host them and have a client that hosts on them.  
I would recommend.

/SS

On Jan 31, 2008, at 11:12 AM, Brian Peddle wrote:

 I currently have 10+ boxes at HostMySite but we are looking to have a
 small footprint at another facility in case of a major issue there.
 Does anyone have any feedback on intermedia.net?

 Thanks

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:297829
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: intermedia.net

2008-01-31 Thread Matt Quackenbush
On Jan 31, 2008 1:12 PM, Brian Peddle wrote:

 I currently have 10+ boxes at HostMySite but we are looking to have a
 small footprint at another facility in case of a major issue there.
 Does anyone have any feedback on intermedia.net?

 Thanks



I hosted with Intermedia.net for about 7 or 8 years.  In terms of
reliability and response time, they were unequivocally the best host I've
ever had (and I've had a lot of them).  The _only_ reason that I do not
currently host with them is because my needs outgrew their affordability.  I
currently host with Enterhost.com, who has been probably the second best
host I've ever had, and is considerably more affordable.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:297842
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Redirecting URLs at Intermedia.net

2003-09-05 Thread Nick Baker
I recently moved some Web sites over to Intermedia.net. Hosting multiple 
domains at Intermedia.net URL's requires the URL's to be of the form 
domainname.com/domainname rather than the standard domainname.com. 
Intermedia.net provides a script (shown below) to handle redirecting for 
the home pages. Unfortunately, when you have a site, like ours at isbc.com, 
where many have linked to individual pages within the site the script 
doesn't work for the individual pages.


For example

http://www.isbc.com/db/Search.cfm

has to be reached using

http://www.isbc.com/isbc/db/Search.cfm

As there a 100's of Web pages involve, the concept of using an CFIF tag for 
every pages becomes very inefficient.

Anyone know of a script or have any suggestions on how to create a more 
advanced script that would insert the extra info when it doesn't already exist?

Thanks,

Nick


REDIRECT SCRIPT for   Cold Fusion


This is an example of default.cfm that will redirect the requests for 
different domains
to appropriate directories.

CFIF FindNoCase(domain1.com,#CGI.SERVER_NAME#) GT 0
 CFLOCATION URL=/directory1
CFELSEIF FindNoCase(domain2.com,#CGI.SERVER_NAME#) GT 0
 CFLOCATION URL=/directory2
CFELSEIF FindNoCase(domain3.com,#CGI.SERVER_NAME#) GT 0
 CFLOCATION URL=/directory3
CFELSE
 You came to unknown domain.
/CFIF

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


Re: Redirecting URLs at Intermedia.net

2003-09-05 Thread jon hall
!--- If IP address... ---
cfif isNumeric(replace(variables.domain, ., , ALL))
No domain found.
cfabort
/cfif

!--- Get actual domain name, ignoring subdomain ---
cfif listLen(cgi.http_host,'.') GT 1
cfset variables.domain = mid(cgi.http_host, find('.', cgi.http_host,1), 
len(cgi.http_host))
/cfif

cfswitch expression=#variables.domain#
  cfcase value=foobar.com
  cflocation 
url=http://isbc.com/foobar#cgi.script_name##cgi.query_string#;
  /cfcase
  etc...
/cfswitch

or better yet, build a table in your database with a crossref between
directory and domain

-- 
 jon
 mailto:[EMAIL PROTECTED]

Friday, September 5, 2003, 1:53:57 PM, you wrote:
NB I recently moved some Web sites over to Intermedia.net. Hosting multiple 
NB domains at Intermedia.net URL's requires the URL's to be of the form 
NB domainname.com/domainname rather than the standard domainname.com. 
NB Intermedia.net provides a script (shown below) to handle redirecting for 
NB the home pages. Unfortunately, when you have a site, like ours at isbc.com, 
NB where many have linked to individual pages within the site the script 
NB doesn't work for the individual pages.


NB For example

NB http://www.isbc.com/db/Search.cfm

NB has to be reached using

NB http://www.isbc.com/isbc/db/Search.cfm

NB As there a 100's of Web pages involve, the concept of using an CFIF tag for 
NB every pages becomes very inefficient.

NB Anyone know of a script or have any suggestions on how to create a more 
NB advanced script that would insert the extra info when it doesn't already exist?

NB Thanks,

NB Nick


NB REDIRECT SCRIPT for   Cold Fusion


NB This is an example of default.cfm that will redirect the requests for 
NB different domains
NB to appropriate directories.

NB CFIF FindNoCase(domain1.com,#CGI.SERVER_NAME#) GT 0
NB  CFLOCATION URL=/directory1
NB CFELSEIF FindNoCase(domain2.com,#CGI.SERVER_NAME#) GT 0
NB  CFLOCATION URL=/directory2
NB CFELSEIF FindNoCase(domain3.com,#CGI.SERVER_NAME#) GT 0
NB  CFLOCATION URL=/directory3
NB CFELSE
NB  You came to unknown domain.
NB /CFIF

NB 
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm


Intermedia.net

2002-02-21 Thread Cameron Childress

Does anyone have a contact # for a higher level CF person at intermedia.net?

Email me on or off list.  Thanks!

-Cameron


Cameron Childress
elliptIQ Inc.
p.770.460.1035.232
f.770.460.0963
--
http://www.neighborware.com
America's Leading Community Network Software



__
Why Share?
  Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER
  Instant Activation · $99/Month · Free Setup
  http://www.pennyhost.com/redirect.cfm?adcode=coldfusionc
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Avoid Intermedia.net

2001-02-12 Thread Alexandre Dornback


 Intermedia.net is another host provider to avoid.   They don't allow
subdomains under a single account.  They also don't allow multiple domains
under one parent account.  They charge you full charge for each sub-domain
cname and top-level domain name.  Their people are also not very knowlegable
and rude.

Alex D
CWO.




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Avoid Intermedia.net

2001-02-12 Thread Ken Wilson


My experience has been just the opposite of yours, both with regard to their
personnel and the details of their account offerings and charges. While I
know at least one of us (Bud, I believe) had performance issues with their
servers, I've had excellent service and performance from them with clients
who needed low-priced shared hosting for multiple domains.

Not trying to trivialize whatever problems you encountered, but I hated to
see their offerings mis-represented in a public forum.

Ken


  Intermedia.net is another host provider to avoid.   They don't allow
 subdomains under a single account.  They also don't allow multiple domains
 under one parent account.  They charge you full charge for each sub-domain
 cname and top-level domain name.  Their people are also not very
 knowlegable and rude.


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Avoid Intermedia.net

2001-02-12 Thread Jennifer

As I said in another forum, this may be a problem employee at the company 
and not the company itself. It happens. I recommended asking for the 
supervisor.

At 07:17 PM 2/12/01 -0500, you wrote:

My experience has been just the opposite of yours, both with regard to their
personnel and the details of their account offerings and charges. While I
know at least one of us (Bud, I believe) had performance issues with their
servers, I've had excellent service and performance from them with clients
who needed low-priced shared hosting for multiple domains.

Not trying to trivialize whatever problems you encountered, but I hated to
see their offerings mis-represented in a public forum.

Ken


   Intermedia.net is another host provider to avoid.   They don't allow
  subdomains under a single account.  They also don't allow multiple domains
  under one parent account.  They charge you full charge for each sub-domain
  cname and top-level domain name.  Their people are also not very
  knowlegable and rude.



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Avoid Intermedia.net

2001-02-12 Thread Courtney Payne

Yeah, I've had pretty good experiences with Intermedia.net.  Besides a few
server downtime issues of late, I've been satisfied with their service.  And
their support people are pretty prompt when responding to my e-mails.

Courtney Payne, Sr. Developer - Contractor
Digicon Corp
Washington, DC

- Original Message -
From: "Ken Wilson" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Monday, February 12, 2001 7:17 PM
Subject: RE: Avoid Intermedia.net



 My experience has been just the opposite of yours, both with regard to
their
 personnel and the details of their account offerings and charges. While I
 know at least one of us (Bud, I believe) had performance issues with their
 servers, I've had excellent service and performance from them with clients
 who needed low-priced shared hosting for multiple domains.

 Not trying to trivialize whatever problems you encountered, but I hated to
 see their offerings mis-represented in a public forum.

 Ken


   Intermedia.net is another host provider to avoid.   They don't allow
  subdomains under a single account.  They also don't allow multiple
domains
  under one parent account.  They charge you full charge for each
sub-domain
  cname and top-level domain name.  Their people are also not very
  knowlegable and rude.



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Intermedia.net

2001-02-12 Thread Alexandre Dornback


   I must apologize   I have misspoken  I was thinking of too many
things at once and reversed myself
  Intermedia is great.  Their service is wonderful, the people courteous,
and they offer very competitive plans for great prices.

Interland.com is the host I was meaning to mention in a negative
light...

   I'm planning on switching my hosting from a completely different host to
Intermedia.

Alex




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Intermedia.net

2001-02-12 Thread Jennifer

At 04:46 PM 2/12/01 -0800, you wrote:

I must apologize   I have misspoken  I was thinking of too many
things at once and reversed myself
   Intermedia is great.  Their service is wonderful, the people courteous,
and they offer very competitive plans for great prices.

 Interland.com is the host I was meaning to mention in a negative
light...

I'm planning on switching my hosting from a completely different host to
Intermedia.

Sounds like it's about beer:30 at your office... It was about beer:30 here 
at lunchtime.

You should correct yourself in CF_community too, just so people don't get 
confused.


Now announcing my newly updated website
http://www.blivit.org/mr_urc/index.cfm
Resume: http://www.blivit.org/mr_urc/resume.cfm


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Avoid Intermedia.net

2001-02-12 Thread Bud

On 2/12/01, Alexandre Dornback penned:
Intermedia.net is another host provider to avoid.   They don't allow
subdomains under a single account.  They also don't allow multiple domains
under one parent account.  They charge you full charge for each sub-domain
cname and top-level domain name.  Their people are also not very knowlegable
and rude.

They do have subdomains, they just have an archaic way of 
implementing them. They apparently don't like to dish out multiple 
IPs and rather than using the host_header method, they use a silly 
redirect script. If you have an "account" domain and put 11 domains 
for 5.00 each under that account, then you have to put all the other 
domains in their own directories and they all end up looking like 
www.domain.com/subdirectory/ after being redirected. Plus you can get 
to everyone's site through everyone else's domain. I've hosted 
several sites that end up in the search engines under the wrong 
domain name. Try explaining THAT to your customers. They hassle you 
for months because they're not in the search engines, then one day 
they're all excited because they see their domain name. They click on 
it and end up on someone else's site. Or they see the title to their 
site, click it, end up at their site but it's not their domain name. 
I'd stay far away from their sub domains.

Same with mail. For email accounts, if you assign Joe the e-mail 
address [EMAIL PROTECTED], then joe will get the e-mail if you send it 
to [EMAIL PROTECTED], 3.com, 4.com, etc. So there can only be one Joe 
for all 12 domains. info@ is like gold on their system. LOL

While I personally have had performance issues with their ColdFusion 
sites, I must take exception to the latter part of your e-mail. Their 
customer support people have always been extremely knowledgeable, 
helpful, friendly, and quick to respond. And believe me, I've berated 
them, questioned them, you name it because I've been so PO'd at 
times. They still treat my like their favorite customer. :)
-- 

Bud Schneehagen - Tropical Web Creations

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
ColdFusion Solutions / eCommerce Development
[EMAIL PROTECTED]
http://www.twcreations.com/
954.721.3452

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Avoid Intermedia.net

2001-02-12 Thread Ken Wilson

 Plus you can get to everyone's site through everyone else's domain.


Fortunately all it takes is a little creative CF code and that problem goes
away. Just don't bother with the redirect script they offer.


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists