1. Create a file with the following content:
<?php
phpinfo();
?>
and then save it into the $HTTPD_VHOSTS_D/domain.tld/httpdocs folder as 1.php (the name may be different, only .php should be existed)
2. Open the file via browser:
http://your-domain.com/1.php
Note! The PHP support should be enabled for the domain.
On the page the standard PHP diagnostic table should be existed.
Does Plesk support international characters in domain names?
Since ‘Plesk 7 Reloaded’ Plesk includes complete support for the International Domain Naming conventions and their characters.
UTF8 character support is integrated as part of the interface redesign so Plesk will fully recognize characters from Japan, Korea, China, Denmark, Switzerland, Norway, Austria, China, Arabic countries and many other native language characters.
Reference: http://parallels.com/
How to modify the open_basedir setting for one domain
To change the open_basedir value when using php in CLI mode (not suPhp), you can do so by going to:
Admin Level -> Custom httpd configuration -> domain.com
In the top text area, insert this one line:
|?OPEN_BASEDIR_PATH=`HOME`/:/tmp:/usr/local/lib/php/|
which is the default value in the templates. Edit the paths in that line to meet your needs.
Source: http://directadmin.com
How to modify the open_basedir setting for one domain in DirectAdmin
To change the open_basedir value when using php in CLI mode (not suPHP), you can do so by going to:
Admin Level -> Custom httpd configuration -> domain.com
In the top text area, insert this one line:
|?OPEN_BASEDIR_PATH=`HOME`/:/tmp:/usr/local/lib/php/|
which is the default value in the templates. Edit the paths in that line to meet your needs.
Source : http://directadmin.com/
DirectAdmin custom httpd.conf code to the VirtualHosts of a domain
DirectAdmin Allows Admin to insert extra httpd.conf code that a User may require. To access the control page for this functionality, go to Admin Panel -> Admin Settings -> Customize Httpd Configurations.
Once you see the list of domain, click the domain you wish to insert the extra httpd.conf code to.
Another common use is to add another ServerAlias. This allows another domain to be used to access the exact same content. To accomplish this, you would write
ServerAlias mynew-domain.com www.mynew-domain.com
To get mynew-domain.com and www.mynew-domain.com to point to the original domain for the VirtualHost. You will also have to make sure that mynew-domain.com and www.mynew-domain.com both resolve to the same IP.