Slowman
New Member
Mal dumm in dne raum gefragt, ich habe jetzt PHP4 und PHP5cgi am laufen, nun funzt mein Perl nicht mehr, es ist installiert und mir wird mit perl -v die aktuelle Version angezeigt. Habe mich jetzt durch eine Anleitungen gekämpft und irgendwie doch nicht schlauer
Vielleicht kann mich jemadn mal zum Licht führen.
Danke.
in /etc/vhcs2/apache/httpd.conf
Vielleicht kann mich jemadn mal zum Licht führen.
Danke.
in /etc/vhcs2/apache/httpd.conf
Code:
#
# GUI Location.
#
Alias /vhcs2 /var/www/vhcs2/gui
<Directory /var/www/vhcs2/gui>
AllowOverride none
Options MultiViews IncludesNoExec FollowSymLinks
ErrorDocument 404 /vhcs2/errordocs/index.php
DirectoryIndex index.html index.php
# httpd global entry handler PHP remove BEGIN.
RemoveHandler .php .php3 .php4 .php5
# httpd global entry hanlder PHP remove END.
</Directory>
<Directory /var/www/vhcs2/gui/tools/filemanager>
php_flag register_globals On
php_admin_value open_basedir "/var/www/vhcs2/gui/tools/filemanager/:/tmp/:/usr/share/php/"
</Directory>
Alias /vhcs_images /var/www/vhcs2/gui/images
<Directory /var/www/vhcs2/gui/images>
AllowOverride none
Options MultiViews IncludesNoExec FollowSymLinks
</Directory>
#
# GLOBAL PHP5-CGI
#
ScriptAlias /php5 /usr/lib/cgi-bin/
<Directory /usr/lib/cgi-bin/>
Options +ExecCGI +FollowSymLinks
AllowOverride all
Order allow,deny
Allow from all
</Directory>
#
# Default GUI.
#
<VirtualHost _default_:*>
DocumentRoot /var/www/vhcs2/gui
<Directory /var/www/vhcs2/gui>
Options Indexes Includes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
# httpd [{IP}] virtual host entry BEGIN.
# httpd [{IP}] virtual host entry END.
# httpd Data END.