[Resolved] installing magento 2

Status
Not open for further replies.

gdewey

Well-Known Member
#1
I am testing magento 2 entrprise on litespeed, everything I have configure is the same as magento 1.9 but after installation I am getting this server statuses on css files.. all permissions are double check

see
https://db.tt/HweAcHcA

any idea what could it be wrong?

my .htaccess config on the lsws is just as I have it in magento 1 ..

any helps would be apreciate it
 

Pong

Administrator
Staff member
#2
The error message shows " Forbidden: PHP engine is disable. "

Comment out "php_flag engine 0" at /pub/static/.htaccess should fix the problem.

Code:
IfModule mod_php5.c>
#php_flag engine 0
</IfModule>

<IfModule mod_php7.c>
#php_flag engine 0
</IfModule>
 
Last edited by a moderator:

gdewey

Well-Known Member
#3
yes that seems to solve the problem. I was changing php_flag on the php.ini but I guess it was being overwrite by the .htaccess

tks a lot

Guillermo
 
Status
Not open for further replies.
Top