|
How do I View My Web Site ?
To view your Web Site, you need to use a Web Browser
like Internet Explorer or Netscape. Your Web Site
can be accessed with or without the "www"
prelude on the URL Address Bar of your Web Browser;
http://YourDomain.com
or
http://www.YourDomain.com
How do I Upload or Download My Web Files ?
To upload or download your Web Files, you need to
use an FTP Client Software like WSFTP_LE.
To download and install your free software copy CLICK
HERE.
Your
Virtual FTP Server can be accessed using the following
Connection and Login configurations / settings;
| |
FTP
Profile Name |
:
YourDomain.com |
| |
FTP
Host / Name Address |
:
YourDomain.com |
| |
FTP
Host Type |
:
Set to Automatic Detect |
| |
FTP
User ID |
:
YourUserID |
| |
FTP
Password |
:
YourPassword |
| |
Save
Password |
:
Set to Active Mode |
NOTE 1
To improve uploading and downloading speed via WSFTP_LE,
DO NOT ACTIVATE or USE the "Passive Transfer Mode".
You can turn-off or deactivate the mode by accessing
the OPTION TAB found on WSFTP_LE interface.
NOTE
2
Once you are able to log-in via FTP, you must load all
your web files inside the sub-directory /www. You must
first enter the folder /yourdomain.com then /www which
is grouped with sub-directories /db, /special and /logs.
How do I Create My Unlimited Email Accounts ?
To create your Unlimited Email Accounts, you need to
access your Virtual Email Server using your Web Browser:
STEP
1.
Go to your Virtual Email Server URL Address;
http://mail.YourDomain.com:8383
STEP 2.
Provide your Email Administrator Account Login Information;
USER
ID: YourUserID
PASSWORD:
YourPassword
STEP 3.
On the ADMINISTRATIVE ACCOUNT OPTIONS pull-down menu
link, select the USER ADMINISTRATION link.
STEP 4.
Click the ADD or MODIFY or DELETE button depending on
what you would like to accomplish. To create a NEW EMAIL
ACCOUNT, click the ADD button.
STEP 5.
Complete the EMAIL ACCOUNT CREATION FORM by providing
all the required
User Account Information then click the SAVE button;
| |
USER
ID |
:
Min. 3 to Max. 30 Characters
:
Do not include @yourdomain.com |
| |
FIRST
NAME |
:
Optional |
| |
LAST
NAME |
:
Optional |
| |
PASSWORD |
:
Min. 3 to Max. 30 Characters |
| |
CONFIRM
PASSWORD |
:
Required |
| |
MAX.
MAILBOX SIZE |
:
Indicate 0 (ZERO) if Unlimited or
: 1000000 (1MB) to
limit the size to
: 1MB. You can set
any size limit. |
| |
MAX.
MESSAGES |
:
Indicate 0 (ZERO) if Unlimited or
: 1 (ONE) to limit
messages to 1 (ONE).
: You can set any
number of messages. |
| |
USER
ATTRIBUTES |
:
Leave it "AS IS". |
STEP 6.
Click the USER ADMINISTRATION link to create another
Email Account or click the MENU link to go back to your
Administrative Email Account Main Menu.
How do I Access My Unlimited Email Accounts ?
You can access your Unlimited Email Accounts by using
a POP3 Email Browser like MS Outlook / Outlook Express
/ Eudora Lite or by using your Web Browser;
| |
Web
Based Email Access
To access your Unlimited
Email Accounts using your Web Browser, go to your
Virtual Email Server URL Address;
http://www.YourDomain.com:8383
Provide your Email Account Login Information;
USER ID: YourName@YourDomain.com
PASSWORD: YourPassword
POP3
Email Access
To access your Unlimited Email Accounts using
your POP3 Email Browser, you must create and configure
your POP3 Email Browser to recognize and accept
a specific Email Account.
CLICK
HERE,
to know how to create and configure an Email Account
using MS Outlook Express as your POP3 Email Browser.
CLICK
HERE,
to know how to create and configure an Email Account
using Eudora Lite as your POP3 Email Browser.
|
|
How do I Upload or Download My MS Access Database ?
To upload or download your MS Access Database, you need
to access your Virtual FTP Server using an FTP Client
Software as we explained first-above.
Once you are able to log-in on your Virtual FTP Server,
upload or download your
MS Access Database within the sub-directory /db. To
do so, you must first enter
the folder /yourdomain.com then /db which is grouped
with the sub-directories
/www, /special and /logs.
How do I Connect with My MS Access Database using ASP ?
To connect with your MS Access Database via Web using
an ASP programming language, use the following connection
format;
| |
'to
define the variables
Dim conn, rs, sql
'to create a connection
object
Set Conn=Server.CreateObject("ADODB.Connection")
'to create a database connection
Conn.open "Provider=Microsoft.Jet.OLEDB.4.0;
Data Source=" & Server.MapPath("../db/yourfile.mdb")
'to access a table within
a database
sql="select * from yourTable"
rs.Open sql,Conn,adOpenDynamic,adLockBatchOptimistic
'insert your process codes
here
'to close a database connection
conn.close
set conn = nothing
rs.close
set rs = nothing |
|
NOTE
The above sample connection string assumes that the
"RUNNING PROGRAM FILE" is located inside your
Virtual FTP Server's /www root sub-directory.
How do I Create My MS SQL2K Database ?
To create your MS SQL2K Database on your Virtual Database
Server, you need to access and login on your Virtual
Hosting Controller:
STEP
1.
Go to your Virtual Hosting Controller URL
Address;
http://YourDomain.com/admin
STEP 2.
Provide your Domain Administrator Account Login Information;
USER
NAME: YourUserName
PASSWORD:
YourPassword
STEP 3.
Click the SQL SERVER link on the left side Menu Column;
STEP 4.
Click the ADD button.
STEP 5.
Complete the DATABASE CREATION FORM by providing all
the required SQL
Database Account Information then click the SUBMIT button;
| |
LOGIN
NAME and
DATABASE NAME |
:
YourDatabaseName
:
|
| |
PASSWORD |
:
YourPassword |
| |
TARGET
DATABASE
PATH
|
:
Use the BROWSE button to locate your
: /db sub-directory
folder |
STEP 6.
To create and / or add your USER TABLES on your MS SQL2K
Database within your Virtual Database Server, you need
to use the MS SQL2K Enterprise Edition Software to connect
with your Virtual Database Server.
To connect with your Virtual Database Server, use your
SQL Database Account Information and the IP Address
Number for your Virtual Database Server.
How do I Connect with My MS SQL2K Database using ASP ?
To connect with your MS SQL2K Database via Web using
an ASP programming language, use the following connection
string format;
| |
'to
define the variables
Dim conn, rs, sql
'to create a connection
object
Set Conn=Server.CreateObject("ADODB.Connection")
'to create a database connection
Conn.open "Driver={SQL Server}
;Server=ContactUsForTheServerIPToUse
;Database=YourDatabaseName
;Uid=YourUserID
;Pwd=YourPassword
;"
'to access a table within
a database
sql="select * from yourTable"
rs.Open sql,Conn,adOpenDynamic,adLockBatchOptimistic
'insert your process codes
here
'to close a database connection
conn.close
set conn = nothing
rs.close
set rs = nothing |
|
NOTE
The above sample connection string assumes that the
"RUNNING PROGRAM FILE" is located inside your
Virtual FTP Server's /www root sub-directory.
How do I Access and Use My Virtual Hosting Controller ?
To access your Virtual Hosting Controller, use your
Web Browser and go to your Virtual Hosting Controller
URL Address:
STEP
1.
Go to your Virtual Hosting Controller URL
Address;
http://YourDomain.com/admin
STEP 2.
Provide your Domain Administrator Account Login Information;
USER
NAME: YourUserName
PASSWORD:
YourPassword
On using your Virtual Hosting Controller, please consult
our Hosting Controller Manual and Help Guide by accessing
the following URL Address;
http://www.com.ph/admin/help/webadmin/default.htm |