Search results

  1. R

    mod_rewrite rules for SilverStripe CMS

    Unfortunately, that did not work either. I am at a complete loss.
  2. R

    mod_rewrite rules for SilverStripe CMS

    Tried that. Still nothing. :(
  3. R

    mod_rewrite rules for SilverStripe CMS

    Is that what you are referring to here: function isRunningApache($testDetails) { $this->testing($testDetails); if(function_exists('apache_get_modules') || stristr($_SERVER['SERVER_SIGNATURE'], 'Apache')) return true; $this->warning($testDetails); return false; } What...
  4. R

    mod_rewrite rules for SilverStripe CMS

    I believe this is the set of rewrite rules for Apache. RewriteEngine On RewriteCond %{REQUEST_URI} !(\.gif)|(\.jpg)|(\.png)|(\.css)|(\.js)|(\.php)$ RewriteCond %{REQUEST_URI} ^(.*)$ RewriteCond %{REQUEST_FILENAME} !-f RewriteRule .*...
  5. R

    mod_rewrite rules for SilverStripe CMS

    I've tried several times to get it to install as if it were Apache. I get the following webserver config warnings: Server Software warning saying: I can't tell what webserver you are running. Without Apache I can't tell if mod_rewrite is enabled. mod_rewrite warning saying: I can't tell...
  6. R

    mod_rewrite rules for SilverStripe CMS

    Hi, I just switched to a new hosting provider who's servers are powered by LiteSpeed. The site I am hosting there is built on the SilverStripe CMS tool. The problem I'm having is that SilverStripe currently does not support LiteSpeed out of the box. It was built for use on Apache and lighttpd...
Top