Posted on 03 February 2012. Tags: chown, ftp, Plesk, suphp, upload
suPHP is a tool for executing PHP scripts with the permissions of their owners. It consists of an Apache module (mod_suphp) and a setuid root binary (suphp) that is called by the Apache module to change the uid of the process executing the PHP interpreter.

Read the full story
Posted in PHP, Plesk
Posted on 29 January 2012. Tags: Plesk, psa, sso
Resolution
SSO logout-url is stored in database of SSO server /var/lib/sso/sso.db. It is configured during registration of Parallels Plesk Panel in SSO server to match Plesk full hostname. Plesk full hostname is stored in table misc of Plesk database.
It may be viewed and configured through Parallels Plesk Panel interface and in Plesk database directly.
In Parallels Plesk Panel GUI {Settings -> Server Settings -> Full hostname}. Use the following command to check the parameter in Plesk database: Read the full story
Posted in Plesk
Posted on 28 January 2012. Tags: dump, Plesk
the default backup direktory is
Read the full story
Posted in Linux, Plesk
Posted on 18 December 2010. Tags: mail, Plesk, qmail, server
SMTP or sending mail problems are common and usually easy to troubleshoot. This document will help customers troubleshoot SMTP problems on all (mt) Media Temple hosting platforms. Read the full story
Posted in Linux, Plesk
Posted on 02 November 2010. Tags: Plesk, qmail
# /usr/local/psa/admin/sbin/mailqueuemng –help
qmHandle v1.2.0
Copyright 1998-2003 Michele Beltrame
Available parameters:
-a : try to send queued messages now (qmail must be running)
-l : list message queues
-L : list local message queue
-R : list remote message queue
-T : list todo message queue
-s : show some statistics
-mN : display message number N
-dN : delete message number N
-Stext : delete all messages that have/contain text as Subject
-D : delete all messages in the queue (local and remote)
-V : print program version
Additional (optional) parameters:
-c : display colored output
-N : list message numbers only
(to be used either with -l, -L, -R or -T)
You can view/delete multiple message i.e. -d123 -v456 -d567
[ad code=4]
Posted in Linux, Plesk
Posted on 02 November 2010. Tags: Plesk, qmail, qmhandle, stats
Details
When the mail queue on a (dv) Dedicated-Virtual Server has messages stacked up you can use the tool qmHandle.
- Download qmHandle from SourceForge. You actually only need the script ‘qmHandle’ so use that if you have it handy. Upload it to the server and untar it if necessary. You may download the file directly from SourceForge using the wget command: Read the full story
Posted in Linux, Plesk
Posted on 01 November 2010. Tags: Plesk
Symptoms
AWstats statistics generator is used by domain:
Domains -> <domain name> -> Setup -> Web statistics: AWstats Read the full story
Posted in Plesk
Posted on 01 November 2010. Tags: Linux, Plesk
How to install cpanel and plesk
http://www.eukhost.com/forums/f16/install-plesk-cpanel-11-a-8254/
Read the full story
Posted in Plesk
Posted on 25 October 2010. Tags: http, Plesk
Resolution
By default Plesk runs CGI scripts in /cgi-bin/ folder only. To allow CGI scripts be processed from any folder, you should and uncomment the cgi-script AddHandler directive in the main apache configuration file /etc/httpd/conf/httpd.conf: Read the full story
Posted in Programming
Posted on 08 February 2010. Tags: Plesk
Plesk uses PHP’s open_basedir setting to restrict PHP scripts to their domain’s httpdocs directory (and /tmp) for security. If you check the domain’s error_log you’ll see that the open_basedir restriction is in effect (or enable display_errors to see errors in your browser, but this is not recommended for production sites).
You can override a domain’s open_basedir setting if you want, for instance you can add domain2′s path2 directory to domain1′s open_basedir like this:
Code:
<Directory /var/www/vhosts/domain1/httpdocs>
php_admin_value open_basedir "/var/www/vhosts/domain1/httpdocs:/tmp:/var/www/vhosts/domain2/httpdocs/path2"
</Directory>
See Including Directives into Web Server Configuration File for instructions on adding custom Apache settings for a domain.
Posted in Linux, Plesk