Results 1 to 16 of 16

Thread: Webhosting?

  1. #1

    Thread Starter
    Member
    Join Date
    Oct 2000
    Posts
    47

    Question

    Does anybody know a good and cheap webprovider with access to frontpage 2000, cgi, and other "protected" devices. Is there any for 20- 50 $ per month? Thanks

  2. #2
    Member Benjamin's Avatar
    Join Date
    Nov 2000
    Posts
    48
    -Dennis
    [email protected]
    Ever stop to think, and forget to start again?


    The end justifies the means
    http://www.cfm-resources.com/d/dewrenn
    http://www.phpsquare.com

  3. #3
    Hyperactive Member Kagey's Avatar
    Join Date
    Sep 2000
    Location
    The Wilderness of New Brunswick
    Posts
    294
    you could take a look at http://www.burlee.com

  4. #4
    PowerPoster sail3005's Avatar
    Join Date
    Oct 2000
    Location
    Chicago, IL, USA
    Posts
    2,340

    burlee

    Yes, i highly recommend burlee myself, but if you don't want any complicated restrictions, then don't go with the unlimited plan.

    i have and recomend a version of the basic plan!

  5. #5
    Black Cat JoshT's Avatar
    Join Date
    Nov 2000
    Location
    WNY, USA
    Posts
    4,032
    What kind of restrictions do they have on the unlimited plan? I was planning to use it to host my personal domain.

    Josh

  6. #6
    Hyperactive Member Kagey's Avatar
    Join Date
    Sep 2000
    Location
    The Wilderness of New Brunswick
    Posts
    294
    the unlimited plan would be sufficent for your personal domain. you can have either fp2000 or FTP support, full asp, but not your own components, its a little skimpy on the cgi, but there customer service is great. also, you can't have a unique ip number for the unlimited, since it is shared hosting.

  7. #7
    Black Cat JoshT's Avatar
    Join Date
    Nov 2000
    Location
    WNY, USA
    Posts
    4,032
    Yeah, thanks, I think the unlimited plan would be good - I don't want Front Page, just ASP with ADO and maybe the FileSystemObject. I just need a cheap place to stick my Resume and share a few pictures I take with my digital camera.

    Josh

  8. #8
    Hyperactive Member Kagey's Avatar
    Join Date
    Sep 2000
    Location
    The Wilderness of New Brunswick
    Posts
    294
    then the unlimited plan is the way to go. full asp. have fun man

  9. #9
    Guest
    I reccomend http://www.f2s.com.

    Its FREE and has the following : -

    20 Mbytes web space
    Unlimited emails
    Unlimited Internet capacity
    Scripting in PHP4 and Perl
    Webalizer web site statistics
    Virus protected email
    Microsoft Frontpage 2000 extensions
    Database servers etc

  10. #10
    Guest
    Is it free to US customers, and does it have MySQL database?

  11. #11
    Guest

    Thumbs up

    I've tried them, and they are very good, but I would rather have PHP than ASP...

  12. #12
    Guest
    I use Brinkster (was eWebCity) and their premium membership with SQL Server DB is great. You get a virtual server for yourself and the service is friendly. I've been using them for a few months and am having my domain name transfered to them from freenetname.

  13. #13
    Lively Member
    Join Date
    Feb 2001
    Posts
    87

    Question

    I have tried brinkster, but i have problems in setting up my database. I normally test out my asp pages with personal web server. For this case, i set up my database using the ODBC - User DSN. How do I set up it on brinkster, or it uses another way to connect to database.

    Here is a sample of my code..

    <%

    Set objConnection = server.CreateObject( "ADODB.Connection" )
    Set objRecord = server.CreateObject( "ADODB.RecordSet" )
    Call objConnection.Open( "DSN=Student" )
    strQuery1 = "SELECT * FROM Examination INNER JOIN AcademicRecords2 ON Examination.ExaminationCode = AcademicRecords2.ExaminationCode WHERE (((AcademicRecords2.PuteraID)= " & _
    Session( "StudentLoggedIn" )& _
    "));"


    Call objRecord.Open( strQuery1, objConnection, 1, 2 )

    %>

    The problem is i can't get the asp page to run the code. How do I make it work on brinkster?

    All reply is appreciated. Thank you.

  14. #14
    Black Cat JoshT's Avatar
    Join Date
    Nov 2000
    Location
    WNY, USA
    Posts
    4,032
    I stick the connection string in the global.asa:

    Code:
    Application("ConnString") = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\Databases\MyDB.mdb;"
    Then use that for the Connection when opening a recordset:

    Code:
    Set rsCodes = Server.CreateObject("ADODB.Recordset")
    rsCodes.CursorLocation = adUseClient
    rsCodes.Open "SELECT * FROM CodeTable",Application("ConnString"),adOpenForwardOnly,adLockReadOnly
    Set rsCodes.ActiveConnection = Nothing
    Do While Not rsCodes.EOF
    ...
    And no DSN is needed, and I only have to use the connection string once = makes the code easy to maintain. You can use Server.MapPath to find the physical path of your DB if needed.

    Josh

  15. #15
    Addicted Member
    Join Date
    Feb 2001
    Location
    Upstate NY
    Posts
    210

    Exclamation The best of the best

    I've used a lot of webservers, and here's a few of 'me i'd like to reccomend:

    1. NBCi.com -FTP access and unlimited space and bandwith

    2. This isn't a host but www.freewebspace.net has a great database with a very friendly search option
    < o >

  16. #16
    Guest
    http:www.f2s.com - supports the following :-

    20 Mbytes of web space

    Frontpage 2000 support

    Advanced PHP4 scripting

    Perl cgi scripting

    Webalizer website statistics

    website Search Engine

    Database Servers

    www.YOURNAME.f2s.com

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width