Weboldal áthelyezése alkönyvtárból a domain root-ba > Internal server error

Sziasztok!
Belefutottam egy Internal server error-ba, míg az alkönyvtárból a root-ba szerettem volna a működő webshopot átrakni.

Az ilyenkor ajánlott módon jártam el:1. Backup; 2. Permalinks, save; 3. General: website átállítása a root könyvtárra, save; 4. CPanel file manager > Fájlok áthelyezése a rootba

Eredmény: Internal server error

Összevetettem a domain root és az alkönyvtár .HTACCESS fájljait, a rootból áttettem ami az alkönyvtárbeli .HTACCESS-ben nem volt ott.

Eredmény: Internal server error, viszont már a kezdi a cookie-kat használni, de így is hibát ad. Valakinek van ötlete mit kellene módosítani hogy működjön?

A fájlok:

Domain root .HTACCESS

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://www.domain-neve.xy/$1 [R=301,L]

# BEGIN cPanel-generated php ini directives, do not edit
# Manual editing of this file may result in unexpected behavior.
# To make changes to this file, use the cPanel MultiPHP INI Editor (Home >> Software >> MultiPHP INI Editor)
# For more information, read our documentation (https://go.cpanel.net/EA4ModifyINI)
<IfModule php5_module>
   php_flag asp_tags On
   php_flag display_errors Off
   php_value max_execution_time 180
   php_value max_input_time 60
   php_value max_input_vars 10000
   php_value memory_limit 256M
   php_value post_max_size 128M
   php_value session.gc_maxlifetime 1440
   php_value session.save_path "/var/cpanel/php/sessions/ea-php56"
   php_value upload_max_filesize 64M
   php_flag zlib.output_compression Off
</IfModule>
<IfModule lsapi_module>
   php_flag asp_tags On
   php_flag display_errors Off
   php_value max_execution_time 180
   php_value max_input_time 60
   php_value max_input_vars 10000
   php_value memory_limit 256M
   php_value post_max_size 128M
   php_value session.gc_maxlifetime 1440
   php_value session.save_path "/var/cpanel/php/sessions/ea-php56"
   php_value upload_max_filesize 64M
   php_flag zlib.output_compression Off
</IfModule>
# END cPanel-generated php ini directives, do not edit

Alkönyvtár .HTACCESS (ez került a gyökérbe az alkönyvtár “777” nélkül)

#Begin Really Simple Security
Options -Indexes
#End Really Simple Security

# BEGIN WordPress
# The directives (lines) between "BEGIN WordPress" and "END WordPress" are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /777/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /777/index.php [L]
</IfModule>

# END WordPress

# Wordfence WAF
<Files ".user.ini">
<IfModule mod_authz_core.c>
	Require all denied
</IfModule>
<IfModule !mod_authz_core.c>
	Order deny,allow
	Deny from all
</IfModule>
</Files>

# END Wordfence WAF

(próbáltam kikapcsolt Wordfence-el is és úgy is hogy módosítottam a hivatkozott USER.ini-t > “777” törlése)

USER.ini

Wordfence WAF
auto_prepend_file = '/home2/xxxxxxxxxx/public_html/domain-neve.xy/777/wordfence-waf.php'
; END Wordfence WAF

Megoldódott. A .user.ini és a php.ini egyszerre volt használva ami a hibát okozta.

Azért ugye nem 5-ös PHP-val megy? “php5_module” alapján rákérdeznék.