+ Reply to Thread
Results 1 to 6 of 6

Thread: problem in the pages of the script

  1. #1

    problem in the pages of the script

    There is a problem in the pages of the script
    Here
    http://www.youcars.net/fly/
    ----------------------------
    Only show Home but>>Other error pages
    here
    http://www.youcars.net/fly/add-listing.html
    ---------------------------
    What is the problem please

  2. #2
    Master
    Join Date
    Apr 2012
    Location
    Germany
    Posts
    421
    check your .htaccess File. I think the problem is URL Rewrite.

    Best regards
    Steffen
    Last edited by Steffen Buschkemper; June 8, 2012 at 09:31 PM.

  3. #3
    Heres the installation guide, point 10 maybe the issue

    http://www.flynax.com/forum/showthre...llation-Manual

  4. #4
    this is .htaccess ... where is problem?
    ---------------------------------------------------
    ---------------------------------------------------
    # enable apache morRewrite module #
    RewriteEngine on

    RewriteBase /

    # set files headers
    <IfModule mod_headers.c>
    <FilesMatch "\.(css|js|png|gif|jpg|jpeg|htc)$">
    Header set Cache-Control "max-age=2678400, public, must-revalidate"
    </FilesMatch>
    </IfModule>

    # deflate static content
    <IfModule mod_deflate.c>
    AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/x-component text/css application/x-javascript application/javascript
    </IfModule>

    # allow request methods
    <Limit POST PUT DELETE GET OPTIONS HEAD>
    Order deny,allow
    Allow from All
    </Limit>

    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f

    ErrorDocument 404 /404.html

    # define system languages
    RewriteRule ^([^//]+)/?(.{2})?/$ index.php?page=$1 [QSA,L]

    # define paging
    RewriteRule ^([^//]+)/?(.*)?/index([0-9]*).ht(m?ml?)$ index.php?page=$1&rlVareables=$2&pg=$3 [QSA,L]

    # define listing
    RewriteRule ^([^/][\w\-\_]+)(.+)-l?([0-9]+).ht(m|ml)$ index.php?page=$1&rlVareables=$2&listing_id=$3 [QSA,L]

    # define account details request
    RewriteRule ^((\w{2})/)?([\w-_]{3,})$ index.php?page=$3&lang=$2&account_request [QSA,L]

    # define single pages
    RewriteRule ^([^//]+)/?(^/*)?.ht(m?ml?)$ index.php?page=$1 [QSA,L]

    # define other pages
    RewriteRule ^([^//]+)/?(.*)?/?(.*)?(.ht(m?ml?)|/+)$ index.php?page=$1&rlVareables=$2 [QSA,L]

  5. #5
    looking at your url in the first post you would need to Replace:

    RewriteBase /

    to

    RewriteBase /fly/

  6. #6
    my friend Steffen Buschkemper
    my friend Chris Brown

    Thank you all

    Skip the problem With your help

+ Reply to Thread