Jump to content

rusty_dog

Approved members
  • Posts

    11
  • Joined

  • Last visited

Posts posted by rusty_dog

  1.  

    Mine did turn out to be a PHP version issue - teach me to believe what I was told instead of checking myself! Changed version within Plesk and welcome page now appears although a very strange problem within the configuration check:

     

    safe_mode

    The safe_mode option must be OFF
     
    Current value is OFF!!!
     
    Will raise a new topic rather than highjacking this one. Good luck rusty_dog

     

     

    Hi,

     

    What version did you put it to? Mine is 5.3.27

     

    Thanks

  2. Hi,

     

    The ads directory doesn't appear to have one but this is the one from my main domain:

    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule .* ./index.php
    
    
    # Enable gzip compression
    <ifModule mod_gzip.c>
     mod_gzip_on Yes
     mod_gzip_dechunk Yes
     mod_gzip_item_include file \.(html?|txt|css|js|php|pl)$
     mod_gzip_item_include handler ^cgi-script$
     mod_gzip_item_include mime ^text/.*
     mod_gzip_item_include mime ^application/x-javascript.*
     mod_gzip_item_exclude mime ^image/.*
     mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
    </ifModule>
    
    #Ban Malicious IPs
    order allow,deny
    deny from 1.1.1.1
    allow from all
    
    ## EXPIRES CACHING ##
    <IfModule mod_expires.c>
    ExpiresActive On
    
    # Your document html
      ExpiresByType text/html "access plus 0 seconds"
    
    # Media: images, video, audio
      ExpiresByType audio/ogg "access plus 1 month"
      ExpiresByType image/gif "access plus 1 month"
      ExpiresByType image/jpeg "access plus 1 month"
      ExpiresByType image/png "access plus 1 month"
      ExpiresByType video/mp4 "access plus 1 month"
      ExpiresByType video/ogg "access plus 1 month"
      ExpiresByType video/webm "access plus 1 month"
    
    # CSS and JavaScript
      ExpiresByType application/javascript "access plus 1 year"
      ExpiresByType text/css "access plus 1 year"
    
    </IfModule>
    ## EXPIRES CACHING ##
    
    #Prevent Hot Linking
    RewriteCond %{HTTP_REFERER} !^$
    RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?domain.com.au [NC]
    RewriteRule \.(jpg|jpeg|png|gif)$ - [NC,F,L]
    
    <IfModule mod_headers.c>
      <FilesMatch "\.(js|css|xml|gz)$">
        Header append Vary: Accept-Encoding
      </FilesMatch>
    </IfModule>
    

    I have replaced my domain up there with 'domain'. 

     

    Can you see any potential conflicts?

     

    Thanks again!

  3. Hi everyone,

     

    Thanks for the feedback. I have checked and my server config should support this software just fine, and there is nothing in the error log :( So i don't really get why this is occuring. 

     

    If you visit http://goo.gl/uTdL5B you will see it sits on the install page however it's blank. 

     

    If it is a directory permission issue, i can't find any docs on what the permissions should be pre-install. Does anyone know?

     

    Thanks

×
×
  • Create New...