|
Hosting FAQ
How long does it take to get my account activated?
Accounts are activated within 24 hours of the time the request is received.
How do I pay for my account?
We accept DD/Cheque/Cash. Please contact our billing department at webmaster@2mhosting.com to make payment arrangements.
Are there any set-up fees?
Yes. There is a one-time set-up fee to establish your hosting or reseller account for a site @ Rs.750.
What is a domain name?
Your domain name is your virtual Internet address, or URL (Universal Resource Locator).
2mhosting.com is our domain name. It is the name people use to find you on the web.
Do you handle domain registration for me?
Yes, we will take care of registering a new domain, or transferring an existing domain.
How do you handle customer support?
We request all support issues to be submitted in writing either via e-mail, or our tech support request form found in our contact us page. Support requests may be submitted 24 hours a day / 7 days a week. Phone support is available Monday through Friday from 11:00 AM to 7:00 PM. E-mail support is covered 24 hours a day.
How long does it take to get my questions answered?
Most support issues are answered within 12 hours. In the event that your request will take longer, you will at least be notified within 12 hours.
How do I transfer files to my Web site ?
Files can be transferred to the Web server via File Transport Protocol (FTP). If you have a PPP Internet account and need FTP software, you can download a program for either the PC or Mac from various site. We recommend Cute FTP for Windows-based systems. An FTP tutorial is available for first-time users.
Microsoft FrontPage users should "publish" their sites to our server and should not use FTP, except for uploading CGI scripts or other ASCII files. The FrontPage extensions must be installed on a hosting account to use many FrontPage features, including publishing. If you did not ask to have the FrontPage extensions installed on your account when you opened your account, please contact our support department and we will be happy to install them for you.
How to use MS-Access / SQL Server 2000 with ASP ?
Please Refer the Below Code ...
Dim sCon
set sCon=Nothing
set sCon=Server.CreateObject("ADODB.Connection")
sConnectionPath = server.MapPath("yourdatabase.mdb")
' MS ACCESS
sCon.Open "DRIVER={Microsoft Access Driver (*.mdb)};DBQ="&sConnectionPath OR
sCon.open "DSN=dsn_name"
' MS SQL Server 2000
sCon.open "DSN=xxx;uid=xxx;pwd=yyy;database=xxx"
In the above code yourdatabase.mdb is the MS-Access Database 95/97/2000 format file which is in your root directory
(i.e. web/pages/yourdatabase.mdb).
|