[Resolved] Drupal 7 on LSWS 5

Status
Not open for further replies.
#1
I have Drupal 7 running on Apache but when I switch the Database and web root over to LWSW (5.0 Standard) I get several errors that I am pretty sure relate to the standard htaccess rules and most notably the rewrite rules. Has anybody out there been able to successfully get Drupal 7 to work right with LSWS 5.0? How about with http2? Any Secrets?

Note: I did rebuild PHP 5.5 with PDO support (and other items as well like FTP, etc.) so I at least got that far and I would be happy to write up a tutorial if I can get this problem resolved.

These are the stock rewrite rules included in the base .htaccess file with Drupal 7:

Code:
RewriteEngine on
RewriteRule ^ - [E=protossl]
RewriteCond %{HTTPS} on
RewriteRule ^ - [E=protossl:s]
RewriteRule ^ - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteRule "(^|/)\." - [F]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^ index.php [L]
Should LSWS be able to understand all of these?
 
Last edited:
#5
I should probably make a new thread for this, but since you asked. I did an "lsup" command (with no arguments) and it tried to "upgrade me" to 4.2.23. I also noticed that in the webadmin the "update" information actually downgrades you. Looks like an issue with your update system.
 
Status
Not open for further replies.
Top