Page 37 of 72 FirstFirst ... 27353637383947 ... LastLast
Results 361 to 370 of 720
  1. #361
    Join Date
    Apr 2007
    Location
    Tampa, Florida
    Posts
    180
    Plugin Contributions
    0

    Default Re: Comstock Template

    Quote Originally Posted by clydejones View Post
    admin -> configuration -> EZ-Pages Settings -> EZ-Pages Display Status - HeaderBar (set to 1)
    It is set to "1". I tried it on all the settings and it didn't make a difference.

    I'm going to re-load the files maybe something didn't upload right.

    Thanks,
    Gary

  2. #362
    Join Date
    Jan 2005
    Location
    Winter Haven, FL
    Posts
    163
    Plugin Contributions
    0

    Default Re: Comstock Template

    Clyde, I apologize because I know the answer is in this forum - I just cannot find it. I did a new install of 1.3.8a and then loaded comstock 2.02. When I switch to Comstock template, the first page of my site is blank. I reloaded the original core /includes directory - but that did not help. On tools/template selection - I can get the comstock preview. Greatly appreciate your help on what is missing. Thanks

  3. #363
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Comstock Template

    Quote Originally Posted by 2004g35 View Post
    Clyde, I apologize because I know the answer is in this forum - I just cannot find it. I did a new install of 1.3.8a and then loaded comstock 2.02. When I switch to Comstock template, the first page of my site is blank. I reloaded the original core /includes directory - but that did not help. On tools/template selection - I can get the comstock preview. Greatly appreciate your help on what is missing. Thanks
    download and install the debug error logging utility

    check the error message which is generated and post it here.

  4. #364
    Join Date
    Jan 2005
    Location
    Winter Haven, FL
    Posts
    163
    Plugin Contributions
    0

    Default Re: Comstock Template

    here is the error ----
    [22-Jun-2009 16:13:00] PHP Parse error: syntax error, unexpected T_STRING in /homepages/17/d126700361/htdocs/bobkatgifts/includes/languages/comstock/english.php on line 163

    I wonder ...... the main store at www.bobkatgifts.net works great. This is actually a new install in the sub-directory of bobkatgifts. The reason: the main store is php4 and I want to upgrade it to php5. this test store is actually in bobkatgifts.net/bobkatgifts - that seems to be where the error is coming from. Everytime I try to upgrade from comstock 2.0 I run into problems and usually give up. Thanks - this is abouty the umpteenth time I have tried

  5. #365
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Comstock Template

    Quote Originally Posted by 2004g35 View Post
    here is the error ----
    [22-Jun-2009 16:13:00] PHP Parse error: syntax error, unexpected T_STRING in /homepages/17/d126700361/htdocs/bobkatgifts/includes/languages/comstock/english.php on line 163

    I wonder ...... the main store at www.bobkatgifts.net works great. This is actually a new install in the sub-directory of bobkatgifts. The reason: the main store is php4 and I want to upgrade it to php5. this test store is actually in bobkatgifts.net/bobkatgifts - that seems to be where the error is coming from. Everytime I try to upgrade from comstock 2.0 I run into problems and usually give up. Thanks - this is abouty the umpteenth time I have tried
    This is the define statement referred to by the error message:

    define('BOX_INFORMATION_PAGE_4', 'Page 4');

    have you by chance made a change to this line of code?

  6. #366
    Join Date
    Jan 2005
    Location
    Winter Haven, FL
    Posts
    163
    Plugin Contributions
    0

    Default Re: Comstock Template

    The file was fine. I went and upoaded english.php from ver 2.01 - now it works. I had problems before on another store. ver 2.0 and 2.01 was great - never did get 2.02 to work.

  7. #367
    Join Date
    Jan 2009
    Posts
    19
    Plugin Contributions
    0

    Default Re: Comstock Template

    Hello,

    Ive installed your Comstock template. Love it by the way!!
    But now i have alot of strange symbols and or weird characters through out all the original content before the template switch(products and such)
    I get a diamond symbol with a ? in the middle of it.
    I know that this has got to be a text character mode mismatch of some sort. I dont really know much about where to look or how to begin to fix the problem.

    Has anyone had this happen? Can i change a font-family somewhere or do i have to rewrite all my products and such?

    Thx in advance
    RPBelcher
    www.LOUDERvisions.com
    Be LOUD with LOUDERvisions...

    http://loudervisions.com

  8. #368
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Comstock Template

    Quote Originally Posted by loudervisions View Post
    Hello,

    Ive installed your Comstock template. Love it by the way!!
    But now i have alot of strange symbols and or weird characters through out all the original content before the template switch(products and such)
    I get a diamond symbol with a ? in the middle of it.
    I know that this has got to be a text character mode mismatch of some sort. I dont really know much about where to look or how to begin to fix the problem.

    Has anyone had this happen? Can i change a font-family somewhere or do i have to rewrite all my products and such?

    Thx in advance
    RPBelcher
    www.LOUDERvisions.com
    This may correct the problem:

    open includes/languages/comstock/english.php

    find the following section(s) of code

    Code:
      @setlocale(LC_TIME, 'en_US.utf8');
    and replace it with the following

    Code:
    @setlocale(LC_TIME, 'en_US.ISO_8859-1');
    find

    Code:
    define('CHARSET', 'utf-8');
    and replace with

    Code:
    define('CHARSET', 'iso-8859-1');

  9. #369
    Join Date
    Jan 2009
    Posts
    19
    Plugin Contributions
    0

    Default Re: Comstock Template

    THX Clyde..will try that now and post the result.
    Be LOUD with LOUDERvisions...

    http://loudervisions.com

  10. #370
    Join Date
    Jan 2009
    Posts
    19
    Plugin Contributions
    0

    Default Re: Comstock Template

    Quote Originally Posted by clydejones View Post
    This may correct the problem:

    open includes/languages/comstock/english.php

    find the following section(s) of code

    Code:
      @setlocale(LC_TIME, 'en_US.utf8');
    and replace it with the following

    Code:
    @setlocale(LC_TIME, 'en_US.ISO_8859-1');
    find

    Code:
    define('CHARSET', 'utf-8');
    and replace with

    Code:
    define('CHARSET', 'iso-8859-1');
    This worked perfect. THX Clyde
    Be LOUD with LOUDERvisions...

    http://loudervisions.com

 

 
Page 37 of 72 FirstFirst ... 27353637383947 ... LastLast

Similar Threads

  1. v151 Reviews sidebox Comstock template
    By discoverytdi in forum Addon Templates
    Replies: 4
    Last Post: 7 Feb 2013, 04:49 AM
  2. Comstock template question
    By discoverytdi in forum Addon Templates
    Replies: 3
    Last Post: 11 Sep 2011, 10:28 PM
  3. Comstock template
    By grandpaj in forum Addon Templates
    Replies: 1
    Last Post: 25 Oct 2010, 10:09 PM
  4. Comstock template
    By grandpaj in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 22 Oct 2010, 04:02 AM
  5. Comstock Template Help -
    By Mrsb in forum Addon Templates
    Replies: 1
    Last Post: 23 Mar 2009, 07:14 PM

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
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR