Results 1 to 2 of 2

Thread: Can't get front end preview working

  1. #1
    New user
    Join Date
    01-18-10.
    Posts
    21

    Default Can't get front end preview working

    Hi,
    Iv been trying to import a template for about a month now.
    And with all the tutorials and videos it still wont work.
    My website is not coming up in the front end preview at all.
    Nothing is being displayed,
    I cant figure out where im going wrong,

    Please help.

    Aoife

  2. #2
    User
    Join Date
    09-25-09.
    Location
    Amsterdam, The Netherlands
    Posts
    103

    Default Re: Can't get front end preview working

    Hi Aoife,

    It is pretty hard to help you with this information.... Anything can be wrong.

    What template are you using? Is it one you paid for? Maybe the developer give support...

    You do not see anything in the frontend? No errors?

    You can try to set on php errors
    Add the following to your .htaccess file:

    Code:
    php_value display_errors 1
    php_value display_startup_errors 1
    If you do not have access to the .htaccess you can enable the error reporting from the PHP script by adding the ini_set directives to the beginning of the script.

    Code:
    // Display PHP Errors
    ini_set('display_errors', 1);
    error_reporting(E_ALL);
    If you are working on a development server or want to display the errors for all websites on a server you can set display_errors to on in the php.ini file.

    Code:
    display_errors On

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
  •