Hello,
I have added the LayoutHeaderOff and LayoutFooterOff directives as follows however they give an 'Invalid command 'LayoutHeaderOff', perhaps misspelled or defined by a module not included in the server configuration' error when restarting Apache. Any ideas?
<VirtualHost 111.111.111.111:80>
ServerName signup.domain.net
ServerAlias
www.signup.domain.net
DocumentRoot /home/signup/public_html
ServerAdmin
webmaster@signup.domain.net
UseCanonicalName Off
CustomLog /usr/local/apache/domlogs/signup.domain.net combined
CustomLog /usr/local/apache/domlogs/signup.domain.net-bytes_log "%{%s}t %I .\n%{%s$
## User signup # Needed for Cpanel::ApacheConf
<IfModule mod_suphp.c>
suPHP_UserGroup signup signup
</IfModule>
<IfModule concurrent_php.c>
php4_admin_value open_basedir "/home/signup:/usr/lib/php:/usr/php4/lib/php:/usr/$
php5_admin_value open_basedir "/home/signup:/usr/lib/php:/usr/local/lib/php:/tmp"
</IfModule>
<IfModule !concurrent_php.c>
<IfModule mod_php4.c>
php_admin_value open_basedir "/home/signup:/usr/lib/php:/usr/php4/lib/php:/u$
</IfModule>
<IfModule mod_php5.c>
php_admin_value open_basedir "/home/signup:/usr/lib/php:/usr/local/lib/php:/$
</IfModule>
<IfModule sapi_apache2.c>
php_admin_value open_basedir "/home/signup:/usr/lib/php:/usr/php4/lib/php:/u$
</IfModule>
</IfModule>
<IfModule !mod_disable_suexec.c>
SuexecUserGroup signup signup
</IfModule>
ScriptAlias /cgi-bin/ /home/signup/public_html/cgi-bin/
LayoutHeaderOff
LayoutFooterOff
# To customize this VirtualHost use an include file at the following location
# Include "/usr/local/apache/conf/userdata/std/2/signup/signup.domain.net/*.conf"
</VirtualHost>