This page is intended to be a guide to the most common questions asked by our clients.
They are divided into categories, as follows:

 

Access to cPanel interface:

     Access to your account management interface (for each client) is made as follows:
1. Until NS propagation: from the link received in the e-mail confirming your account activation.
2. After NS propagation: adding in the link of your site: "/cpanel" (no quotes) Example: http://www.alfa-web.ro/cpanel.
Enter user name and password choosed in order.

Webmail Access:

     Access to webmail (for each client) is made as follows: adding in the link of your site: "/webmail" (no quotes)
Example: http://www.alfa-web.ro/webmail
A window will appear where you have to insert the full user (Example: test@my_domain.ro) and the password of that e-mail account.
If you enter the wrong data for more than 5 times in a row, you may need to wait 10 minutes to try again.

FTP Access:

     You can download a PDF file with the necessary steps to access FTP here.  These settings are available (in most cases) for any FTP client (CuteFTP, FileZilla, CoreFTP, etc.)

Setting Outlook Express:

     You can download a PDF file with the necessary steps to setup an email account in Outlook Express here.  These settings are available (in most cases) for any other POP3 email client used (Office Outlook, Thunderbird, Pegasus, Eudora, etc.)
     If your Internet prividerul filters port 25 (SMTP outgoing) can set the port 465 and check "this server requires a secure connection (SSL)".

Sending email via PHP script:

     For e-mails sent from your PHP scripts not be considered spam (being sent as from "nobody"), the script must contain SMTP authentication:   (Attention! This is just an example. Please adapt to suit your needs)

< ?php
require_once "Mail.php";

$from = "user@sender_domain.ro"; // sender address (an existent email account on this server)
$to = "user@target_domain.ro"; // destination address
$subject = "Hi!"; // subject of mesage
$body = "Message body"; // body of message

$host = "localhost";
$username = "username"; // user@sender_domain.ro (user of sender account)
$password = "password"; // (password of sender account)

$headers = array ('From' => $from,
'To' => $to,
'Subject' => $subject);
$smtp = Mail::factory('smtp',
array ('host' => $host,
'auth' => true,
'username' => $username,
'password' => $password));

$mail = $smtp->send($to, $headers, $body);

? >


home