htaccess in pleask erlauben

Diskutiere htaccess in pleask erlauben im Off-Topic Forum im Bereich Plesk-Forum; Hallo wo muss ich den hier AllowOverride All hinzufügen um htassess dateien zu erlauben?? Ich hoffe ihr könnt mir weiterelfen. Code: # ATTENTION! # DO ...

Ergebnis 1 bis 3 von 3
  1. #1

    htaccess in pleask erlauben

    Hallo wo muss ich den hier AllowOverride All hinzufügen um htassess dateien zu erlauben??

    Ich hoffe ihr könnt mir weiterelfen.


    Code:
    # 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):
    # /var/www/vhosts/meinedomain/conf/vhost.conf
    # /var/www/vhosts/meinedomain/conf/vhost_ssl.conf
    # /var/www/vhosts/meinedomain/subdomains/<subdomain-name>/conf/vhost.conf
    
    <IfModule mod_ssl.c>
    
    <VirtualHost 88.198.35.199:443>
    	ServerName   meinedomain:443
    		SuexecUserGroup         iceman psacln
    	ServerAdmin  meinemail@web.de
    	DocumentRoot /var/www/vhosts/meinedomain/httpsdocs
    	CustomLog  /var/www/vhosts/meinedomain/statistics/logs/access_ssl_log plesklog
    	ErrorLog  /var/www/vhosts/meinedomain/statistics/logs/error_log
    <IfModule mod_userdir.c>
    	UserDir /var/www/vhosts/meinedomain/web_users
    </IfModule>
    	ScriptAlias  /cgi-bin/ /var/www/vhosts/meinedomain/cgi-bin/
    	Alias  /plesk-stat /var/www/vhosts/meinedomain/statistics/
    	<Location  /plesk-stat/>
    		Options +Indexes
    	</Location>
    	<Location  /plesk-stat/logs/>
    		Require valid-user
    	</Location>
    	Alias  /webstat /var/www/vhosts/meinedomain/statistics/webstat
    	Alias  /webstat-ssl /var/www/vhosts/meinedomain/statistics/webstat-ssl
    	Alias  /ftpstat /var/www/vhosts/meinedomain/statistics/ftpstat
    	Alias  /anon_ftpstat /var/www/vhosts/meinedomain/statistics/anon_ftpstat
    	Alias  /awstats-icon /usr/share/awstats/icon
    	SSLEngine on
    	SSLVerifyClient none
    	SSLCertificateFile /opt/psa/var/certificates/certHGhziQw
    	<Directory /var/www/vhosts/meinedomain/httpsdocs>
    	<IfModule mod_perl.c>
    	<Files ~ (\.pl$)>
    		SetHandler perl-script
    		PerlHandler ModPerl::Registry
    		Options ExecCGI
    		allow from all
    		PerlSendHeader On
    	</Files>
    	</IfModule>
    	<IfModule mod_php4.c>
    		php_admin_flag engine on
    		php_admin_flag safe_mode off
    		php_admin_value open_basedir "/var/www/vhosts/meinedomain/httpsdocs:/tmp"
    	</IfModule>
    	<IfModule mod_php5.c>
    		php_admin_flag engine on
    		php_admin_flag safe_mode off
    		php_admin_value open_basedir "/var/www/vhosts/meinedomain/httpsdocs:/tmp"
    	</IfModule>
    	<IfModule mod_python.c>
    	<Files ~ (\.py$)>
    		SetHandler python-program
    		PythonHandler	mod_python.cgihandler
    	</Files>
    	</IfModule>
    		SSLRequireSSL
    		Options +Includes +ExecCGI
    	</Directory>
    	<Directory /var/www/vhosts/meinedomain/web_users>
    	<IfModule mod_php4.c>
    		php_admin_flag engine off
    	</IfModule>
    	<IfModule mod_php5.c>
    		php_admin_flag engine off
    	</IfModule>
    	</Directory>
    </VirtualHost>
    
    </IfModule>
    
    <VirtualHost 88.198.35.199:80>
    	ServerName   meinedomain:80
    	SuexecUserGroup         iceman psacln
    	ServerAdmin  "daniel.lemmert@web.de"
    	DocumentRoot /var/www/vhosts/meinedomain/httpdocs
    	CustomLog  /var/www/vhosts/meinedomain/statistics/logs/access_log plesklog
    	ErrorLog  /var/www/vhosts/meinedomain/statistics/logs/error_log
    <IfModule mod_userdir.c>
    	UserDir /var/www/vhosts/meinedomain/web_users
    </IfModule>
    	ScriptAlias  /cgi-bin/ /var/www/vhosts/meinedomain/cgi-bin/
    	Redirect permanent /plesk-stat https://meinedomain/plesk-stat
    	Redirect permanent /webstat https://meinedomain/webstat
    	Redirect permanent /webstat-ssl https://meinedomain/webstat-ssl
    	Redirect permanent /ftpstat https://meinedomain/ftpstat
    	Redirect permanent /anon_ftpstat https://meinedomain/anon_ftpstat
    	Redirect permanent /awstats-icon https://meinedomain/awstats-icon
    	<IfModule mod_ssl.c>
    		SSLEngine off
    	</IfModule>
    	<Directory /var/www/vhosts/meinedomain/httpdocs>
    	<IfModule mod_perl.c>
    	<Files ~ (\.pl$)>
    		SetHandler perl-script
    		PerlHandler ModPerl::Registry
    		Options ExecCGI
    		allow from all
    		PerlSendHeader On
    	</Files>
    	</IfModule>
    	<IfModule mod_php4.c>
    		php_admin_flag engine on
    		php_admin_flag safe_mode off
    		php_admin_value open_basedir "/var/www/vhosts/meinedomain/httpdocs:/tmp"
    	</IfModule>
    	<IfModule mod_php5.c>
    		php_admin_flag engine on
    		php_admin_flag safe_mode off
    		php_admin_value open_basedir "/var/www/vhosts/meinedomain/httpdocs:/tmp"
    	</IfModule>
    	<IfModule mod_python.c>
    	<Files ~ (\.py$)>
    		SetHandler python-program
    		PythonHandler	mod_python.cgihandler
    	</Files>
    	</IfModule>
    		Options +Includes +ExecCGI
    	</Directory>
    	<Directory /var/www/vhosts/meinedomain/web_users>
    	<IfModule mod_php4.c>
    		php_admin_flag engine off
    	</IfModule>
    	<IfModule mod_php5.c>
    		php_admin_flag engine off
    	</IfModule>
    	</Directory>
    </VirtualHost>

    Gruß
    Ice

    •    

      MisterAd


        
       

  2. #2

    AW: htaccess in pleask erlauben

    Sorry leute ist aber ein schönes forum wo man nichtmal eine antwort bekommt was mit plesk zutun hat.

    Man könnte wenigstens scheiben ich weiß es selber nicht.

    Aber naja egal wo man keine hilfe bekommt muss man auch nicht bleiben.

    Tschüss und viel erfolg mit diesen forum

    bye

  3. #3

    AW: htaccess in pleask erlauben

    nicht so unfreundlich, ein wneig sinnlos wenn jemand antwortet ich weis es nicht. damit ist hier sicherlich niemandem geholfen auser dem lieben SPAM!

    gruß

htaccess in pleask erlauben

Besucher kamen mit folgenden Begriffen auf die Seite:

plesk htaccess

php_admin_flag engine on

plesk .htaccess

plesk allowoverride

htaccess plesk

.htaccess erlauben
.htaccess plesk
htaccess open_basedir
htaccess erlauben
open_basedir htaccess
plesk-stat ohne ssl
plesk htaccess override
plesk open_basedir .htaccess
plesk perl htaccess
allowoverwrite plesk
IfModule mod_php4.c
plesk AllowOverride All
safe_mode exec_dir .htaccess
plesk htaccess AllowOverride
htaccess erlauben plesk
plesk htaccess erlauben
vhost htaccess erlauben
htaccess override erlauben plesk
plesk htaccess vhost
plesk .htaccess erlauben