PHP Einstellungen (Im ISPConfig3 Backend einstellen  )

post_max_size = 100M
upload_max_filesize = 100M

max_execution_time = 1200
max_input_time = 1200
magic_quotes_gpc = Off
file_uploads = Yes
max_file_uploads = 20

phar.readonly = off
session.auto_start = off
suhosin.session.cryptua = off
zend.ze1_compatibility_mode = off

Nginx Snippet (Im ISPConfig3 Backend einstellen  )

client_max_body_size 100M;

location ~ /(engine|images/[a-z]+|files|templates)/ {
}

location / {
index index.html index.php shopware.php;
rewrite shopware.dll /shopware.php;
rewrite files/documents/.* /engine last;
rewrite images/ayww/(.*) /images/banner/$1 last;
rewrite backend/media/(.*) /media/$1 last;
if (!-e $request_filename){
rewrite . /shopware.php last;
}
}

location ~ .(tpl|yml|ini)$ {
deny all;
}

location /install/ {
location /install/assets {
}
if (!-e $request_filename){
rewrite . /install/index.php last;
}
}

location /update/ {
location /update/assets {
}
location /update/templates {
}
if (!-e $request_filename){
rewrite . /update/index.php last;
}
}

location /recovery/install/ {
location /recovery/install/assets {
}
if (!-e $request_filename){
rewrite . /recovery/install/index.php last;
}
}

location /recovery/update/ {
location /recovery/update/assets {
}
if (!-e $request_filename){
rewrite . /recovery/update/index.php last;
}
}

AncoraThemes © Copyright 2024. All Rights Reserved.