Results 1 to 6 of 6

Thread: dynamic dropdown template blank page

  1. #1
    New user
    Join Date
    09-22-09.
    Location
    Fiji/New Zealand
    Posts
    11

    Default dynamic dropdown template blank page

    Bought inet robots "dynamic dropdown" template recently. After install, the backend works OK, but blank page on the frontend.
    Leo suggested using the safe mode hack. File permissions is not a problem, since I handle all permissions via the command line on the server.
    The music_academy template works fine on the same website.
    Also did a fresh install with the dynamic_dropdown template - same result.

    Any suggestions?

    thanks

  2. #2
    Core developer
    Official Contao Team
    leo's Avatar
    Join Date
    06-04-09.
    Location
    Wuppertal, Germany
    Posts
    201

    Default Re: dynamic dropdown template blank page

    Did you check whether the dynamic_dropdown CSS files are being generated in the TYPOlight folder?

  3. #3
    New user
    Join Date
    09-22-09.
    Location
    Fiji/New Zealand
    Posts
    11

    Default Re: dynamic dropdown template blank page

    Leo,
    Yes, all looks fine.

    Here is a list of the files in the root directory:
    basic.css cron.php form.css INSTALL.txt modules.css plugins templates welcome.css
    blog.xml events.css index.php layout.css navigation.css robots.txt tl_files
    content.css flash.php info.css LICENSE.txt news.xml system typolight

    No error messages with Safari or Firefox, though if using Opera I get the message:
    Remote server or file not found
    See attached pictures.

    How best to debug this issue?

  4. #4
    New user
    Join Date
    09-22-09.
    Location
    Fiji/New Zealand
    Posts
    11

    Default Re: dynamic dropdown template blank page

    Ok, been working on this while you guys have been sleeping.
    It is most likely to be a rewrite issue in my Nginx config.
    Typolight is in a directory tl with path /var/www/tl
    and using root /var/www;

    Is there any guide to setting up Nginx for Typolight. Have not located any on the WWW.

    thanks,

    Gary

  5. #5
    Core developer
    Official Contao Team
    leo's Avatar
    Join Date
    06-04-09.
    Location
    Wuppertal, Germany
    Posts
    201

    Default Re: dynamic dropdown template blank page

    TYPOlight does not require a special server configuration. Are you using the rewrite rules in the ._htaccess file? If so, did you adjust the RewriteBase from "/" to "/tl/"?

  6. #6
    New user
    Join Date
    09-22-09.
    Location
    Fiji/New Zealand
    Posts
    11

    Default Re: dynamic dropdown template blank page

    Thanks Leo.
    To fix the issue I was having I did the following:
    For Nginx I used following code:
    location /tl/ {
    index index.php index.html;
    if (!-e $request_filename) {
    rewrite ^/tl/(.+)$ /tl/index.php?q=$1 last;
    }
    }
    Also found that I needed to update Typolight to 2.7.5
    All is working OK now.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •