general problems

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • seitz
    New Member
    • Jan 2013
    • 17

    general problems

    I installed now vbulletin 5.0.0 (the newest version) on

    [URL="http://sparportal.de"]http://sparportal.de[/URL="http://sparportal.de"]

    the installation process was successfull

    But I cant't start the admincp
    [URL="http://www.sparportal.de/admincp/"]http://www.sparportal.de/admincp/[/URL="http://www.sparportal.de/admincp/"]
    (Forbidden, You don't have permission to access /admincp/ on this server.)

    and the theme is not correct too, see
    [URL="http://www.sparportal.de"]http://www.sparportal.de[/URL="http://www.sparportal.de"]

    In the forum I had shown for the right solution,
    buit I can't find something to solve the problem


    - - - -

    the .htaccess content is:

    # RewriteEngine On
    # RewriteBase /
    AddType x-mapp-php6 .php
    AddHandler x-mapp-php6 .php RewriteCond %{HTTP_HOST} ^([^.]+)\.sparportal.de$ [NC]
    # RewriteRule ^(.*)$ http://sparportal.de/$1 [R=301,L]
    DirectoryIndex index.php


    <IfModule mod_rewrite.c>




    # Redirect old install path to core.
    RewriteRule ^install/ core/install/ [NC,L]

    # Main Redirect
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?routestring=$1 [L,QSA]

    # Because admincp is an actual directory.
    RewriteRule ^(admincp/)$ index.php?routestring=$1 [L,QSA]

    </IfModule>

    <IfModule mod_deflate.c>
    AddOutputFilterByType DEFLATE application/atom+xml \
    text/javascript \
    application/javascript \
    application/json \
    application/rss+xml \
    application/vnd.ms-fontobject \
    application/x-font-ttf \
    application/xhtml+xml \
    application/xml \
    font/opentype \
    image/svg+xml \
    image/x-icon \
    text/css \
    text/html \
    text/plain \
    text/x-component \
    text/xml
    </IfModule>

    <IfModule mod_expires.c>
    ExpiresActive On
    ExpiresByType application/x-javascript A1209600
    ExpiresByType text/javascript A1209600
    ExpiresByType application/javascript A1209600
    ExpiresByType text/css A31536000
    ExpiresByType image/x-icon A2592000
    ExpiresByType image/icon A2592000
    ExpiresByType application/x-ico A2592000
    ExpiresByType application/ico A2592000
    ExpiresByType image/gif A2592000
    ExpiresByType image/jpeg A1209600
    ExpiresByType image/jpg A1209600
    ExpiresByType image/png A1209600
    ExpiresByType application/x-shockwave-flash A1209600
    ExpiresByType font/ttf A2592000
    ExpiresByType font/otf A2592000
    ExpiresByType font/x-woff A2592000
    ExpiresByType image/svg+xml A2592000
    ExpiresByType font/truetype A2592000
    ExpiresByType font/opentype A2592000
    ExpiresByType application/x-font-woff A2592000
    ExpiresByType application/vnd.ms-fontobject A2592000
    </IfModule>

    <IfModule mod_headers.c>
    Header set Connection keep-alive
    <filesmatch "\.(ico|flv|gif|swf|eot|woff|otf|ttf|svg)$">
    Header set Cache-Control "max-age=2592000, public"
    </filesmatch>
    <filesmatch "\.(jpg|jpeg|png)$">
    Header set Cache-Control "max-age=1209600, public"
    </filesmatch>
    <filesmatch "\.(eot|woff|otf|ttf|svg)$">
    Header set Cache-Control "max-age=2592000, public"
    </filesmatch>
    # css and js should use private for proxy caching https://developers.google.com/speed/...geProxyCaching
    <filesmatch "\.(css)$">
    Header set Cache-Control "max-age=31536000, private"
    </filesmatch>
    <filesmatch "\.(js)$">
    Header set Cache-Control "max-age=1209600, private"
    </filesmatch>
    </IfModule>
  • BirdOPrey5
    Senior Member
    • Jul 2008
    • 9613
    • 5.6.3

    #2
    Try using the original .htaccess file in the vbulletin download package with no custom edits.

    Comment

    • seitz
      New Member
      • Jan 2013
      • 17

      #3
      I use now the orginal htaccess
      with one row, because I must use php Version 5.4

      But there is the same result - like in post 1

      ------------------

      AddType x-mapp-php6 .php


      <IfModule mod_rewrite.c>

      # Redirect old install path to core.
      RewriteRule ^install/ core/install/ [NC,L]

      # Main Redirect
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteRule ^(.*)$ index.php?routestring=$1 [L,QSA]

      # Because admincp is an actual directory.
      RewriteRule ^(admincp/)$ index.php?routestring=$1 [L,QSA]

      </IfModule>

      <IfModule mod_deflate.c>
      AddOutputFilterByType DEFLATE application/atom+xml \
      text/javascript \
      application/javascript \
      application/json \
      application/rss+xml \
      application/vnd.ms-fontobject \
      application/x-font-ttf \
      application/xhtml+xml \
      application/xml \
      font/opentype \
      image/svg+xml \
      image/x-icon \
      text/css \
      text/html \
      text/plain \
      text/x-component \
      text/xml
      </IfModule>

      <IfModule mod_expires.c>
      ExpiresActive On
      ExpiresByType application/x-javascript A1209600
      ExpiresByType text/javascript A1209600
      ExpiresByType application/javascript A1209600
      ExpiresByType text/css A31536000
      ExpiresByType image/x-icon A2592000
      ExpiresByType image/icon A2592000
      ExpiresByType application/x-ico A2592000
      ExpiresByType application/ico A2592000
      ExpiresByType image/gif A2592000
      ExpiresByType image/jpeg A1209600
      ExpiresByType image/jpg A1209600
      ExpiresByType image/png A1209600
      ExpiresByType application/x-shockwave-flash A1209600
      ExpiresByType font/ttf A2592000
      ExpiresByType font/otf A2592000
      ExpiresByType font/x-woff A2592000
      ExpiresByType image/svg+xml A2592000
      ExpiresByType font/truetype A2592000
      ExpiresByType font/opentype A2592000
      ExpiresByType application/x-font-woff A2592000
      ExpiresByType application/vnd.ms-fontobject A2592000
      </IfModule>

      <IfModule mod_headers.c>
      Header set Connection keep-alive
      <filesmatch "\.(ico|flv|gif|swf|eot|woff|otf|ttf|svg)$">
      Header set Cache-Control "max-age=2592000, public"
      </filesmatch>
      <filesmatch "\.(jpg|jpeg|png)$">
      Header set Cache-Control "max-age=1209600, public"
      </filesmatch>
      <filesmatch "\.(eot|woff|otf|ttf|svg)$">
      Header set Cache-Control "max-age=2592000, public"
      </filesmatch>
      # css and js should use private for proxy caching https://developers.google.com/speed/...geProxyCaching
      <filesmatch "\.(css)$">
      Header set Cache-Control "max-age=31536000, private"
      </filesmatch>
      <filesmatch "\.(js)$">
      Header set Cache-Control "max-age=1209600, private"
      </filesmatch>
      </IfModule>




      AddType x-mapp-php6 .php

      Comment

      • seitz
        New Member
        • Jan 2013
        • 17

        #4
        It looks - that this is the same problem - I have

        Last edited by seitz; Thu 14 Mar '13, 2:10pm.

        Comment

        • BirdOPrey5
          Senior Member
          • Jul 2008
          • 9613
          • 5.6.3

          #5
          To the OP- It looks like your Admin CP is working now.


          Comment

          • seitz
            New Member
            • Jan 2013
            • 17

            #6
            no, I have installed the old version 4.2 (that's works)
            the Version 5.0 work's on my server not.


            but there is another problem in Version 4.2
            when i have post an article and then I will edit the content
            the content is gone !!!!

            Is that a problem for the editor ?

            Comment

            • BirdOPrey5
              Senior Member
              • Jul 2008
              • 9613
              • 5.6.3

              #7
              Please make a thread in the appropriate forum for 4.x issues. I've not heard of that problem before personally.

              Comment

              Related Topics

              Collapse

              Working...