Nats css

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • tobedeleted
    Pay Per Minute Products
    • Nov 2015
    • 299

    #1

    Nats css

    Has anyone had a problem with the NATS install and CSS?

    I ask because I have been working with one of their installers for the last few days and we had various issues.

    The problem now appears to be that the system is installed, but CSS is not displaying the pages correctly. They were telling me that the problem was related to .htaccess not honoring the symlinks and therefore I modifed http.config to allow AllowOverride All for the subdomain directory path.

    But it does not appear that .htaccess is the problem, more like CSS is not working.

    Anyone have an idea what might be going wrong?
  • Bladewire
    StraightBro
    • Aug 2003
    • 56220

    #2
    Do you allow symlinks and use the -l flag? Are you on HTTPS? Maybe # the line with the -f flag so it doesn't test the symlinks and just accepts it?

    Put in your .htaccess:

    Code:
    RewriteEngine On
    # enable symbolic links
    Options +FollowSymLinks
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-l
    RewriteRule ^(.+) index.php [L]


    Skype: CallTomNow

    Comment

    Working...