• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

vhost,conf

P

pdaehnert

Guest
hi,

im trying to change php settings in my domain by adding a vhost.conf in the directory /conf as it should be...

unfortunately, after executing the command ##/usr/local/psa/admin/sbin/websrvmng --reconfigure-vhost --vhost-name=peteranne.de###
the vhost.conf is not included in the end of the httpd.include :(

i cannot see that im doin anything wrong because it is working perfectly for a different domain on the same server

restarting the apache server doesnt change anything either - this is to expect as vhost.conf is was not included before....

these are the 2 files:


vhost.conf:
##############
php_admin_flag safe_mode OFF
php_admin_value upload_max_filesize 20M
php_admin_flag magic_quotes_gpc ON
##############

httpd.include
##############
# ATTENTION!
# DO NOT MODIFY THIS FILE OR ANY PART OF IT. THIS CAN RESULT IN IMPROPER PLESK
# FUNCTIONING OR FAILURE, CAUSE DAMAGE AND LOSS OF DATA. IF YOU REQUIRE CUSTOM
# MODIFICATIONS TO BE APPLIED TO THE CONFIGURATION, PLEASE, PERFORM THEM IN THE
# FOLLOWING FILE(S):
# /srv/www/vhosts/peteranne.de/conf/vhost.conf
# /srv/www/vhosts/peteranne.de/subdomains/<subdomain-name>/conf/vhost.conf

<VirtualHost 81.169.169.198:80>
ServerName peteranne.de:80
ServerAlias www.peteranne.de
UseCanonicalName Off
SuexecUserGroup pdaehnert psacln
DocumentRoot /srv/www/vhosts/peteranne.de/httpdocs
CustomLog /srv/www/vhosts/peteranne.de/statistics/logs/access_log plesklog
ErrorLog /srv/www/vhosts/peteranne.de/statistics/logs/error_log
<IfModule mod_userdir.c>
UserDir /srv/www/vhosts/peteranne.de/web_users
</IfModule>
ScriptAlias /cgi-bin/ /srv/www/vhosts/peteranne.de/cgi-bin/
<IfModule mod_ssl.c>
SSLEngine off
</IfModule>
<Directory /srv/www/vhosts/peteranne.de/httpdocs>
<IfModule sapi_apache2.c>
php_admin_flag engine on
php_admin_flag safe_mode on
php_admin_value open_basedir "/srv/www/vhosts/peteranne.de/httpdocs:/tmp"
</IfModule>
<IfModule mod_php5.c>
php_admin_flag engine on
php_admin_flag safe_mode on
php_admin_value open_basedir "/srv/www/vhosts/peteranne.de/httpdocs:/tmp"
</IfModule>
Options +Includes +ExecCGI
</Directory>
<Directory /srv/www/vhosts/peteranne.de/web_users>
<IfModule sapi_apache2.c>
php_admin_flag engine off
</IfModule>
<IfModule mod_php5.c>
php_admin_flag engine off
</IfModule>
</Directory>
</VirtualHost>

<VirtualHost 81.169.169.198:80>
ServerName gescheiterte.peteranne.de:80
SuexecUserGroup pdaehnert psacln
DocumentRoot /srv/www/vhosts/peteranne.de/subdomains/gescheiterte/httpdocs
CustomLog /srv/www/vhosts/peteranne.de/statistics/logs/access_log plesklog
ErrorLog /srv/www/vhosts/peteranne.de/statistics/logs/error_log
ScriptAlias /cgi-bin/ /srv/www/vhosts/peteranne.de/subdomains/gescheiterte/cgi-bin/
<IfModule mod_ssl.c>
SSLEngine off
</IfModule>
<Directory /srv/www/vhosts/peteranne.de/subdomains/gescheiterte/httpdocs>
<IfModule sapi_apache2.c>
php_admin_flag engine on
php_admin_flag safe_mode on
php_admin_value open_basedir "/srv/www/vhosts/peteranne.de/subdomains/gescheiterte/httpdocs:/tmp"
</IfModule>
<IfModule mod_php5.c>
php_admin_flag engine on
php_admin_flag safe_mode on
php_admin_value open_basedir "/srv/www/vhosts/peteranne.de/subdomains/gescheiterte/httpdocs:/tmp"
</IfModule>
Options +Includes +ExecCGI
</Directory>
</VirtualHost>

<VirtualHost 81.169.169.198:80>
ServerName rdaehnert.peteranne.de:80
SuexecUserGroup rdaehnert psacln
DocumentRoot /srv/www/vhosts/peteranne.de/subdomains/rdaehnert/httpdocs
CustomLog /srv/www/vhosts/peteranne.de/statistics/logs/access_log plesklog
ErrorLog /srv/www/vhosts/peteranne.de/statistics/logs/error_log
ScriptAlias /cgi-bin/ /srv/www/vhosts/peteranne.de/subdomains/rdaehnert/cgi-bin/
<IfModule mod_ssl.c>
SSLEngine off
</IfModule>
<Directory /srv/www/vhosts/peteranne.de/subdomains/rdaehnert/httpdocs>
<IfModule sapi_apache2.c>
php_admin_flag engine on
php_admin_flag safe_mode on
php_admin_value open_basedir "/srv/www/vhosts/peteranne.de/subdomains/rdaehnert/httpdocs:/tmp"
</IfModule>
<IfModule mod_php5.c>
php_admin_flag engine on
php_admin_flag safe_mode on
php_admin_value open_basedir "/srv/www/vhosts/peteranne.de/subdomains/rdaehnert/httpdocs:/tmp"
</IfModule>
Options +Includes +ExecCGI
</Directory>
</VirtualHost>
###########
 
Back
Top