Results 1 to 10 of 10
  1. #1
    Join Date
    Sep 2019
    Location
    Tamworth
    Posts
    10
    Plugin Contributions
    0

    Default can i ask what this is

    [Note: remember to include site URL, ZC version, list of plugins, PHP version, etc ... read the Posting Tips shown above for information to include in your post here.
    And, remove this comment before actually posting!]

    My site is https://ginniascreativetubeshop.com/ My Zc version is v1.5.7c Not shore about PHP version or Plugins???? when i log into my admine account i keep seeing a message about DEBUG what dose this mean and did i do somthing wrong ....... I'm still trying to understand how this works.

    image Click image for larger version. 

Name:	zenbug.jpg 
Views:	79 
Size:	58.6 KB 
ID:	20060 i hope i didnt stuff somthing up i hope someone can help me

  2. #2
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,674
    Plugin Contributions
    123

    Default Re: can i ask what this is

    Start with the documentation.

    https://docs.zen-cart.com/user/
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  3. #3
    Join Date
    Jun 2005
    Location
    Cumbria, UK
    Posts
    10,263
    Plugin Contributions
    3

    Default Re: can i ask what this is

    DEBUG log files are just that... notifications of functional errors which occur during someone's navigation of your website. For most users, these reports are "gobbledy-gook" because they are written in "tech-speak" that only programmers can understand, so unless you have a good understanding of zencart and the software it uses, determining what these reports mean is challenging!
    But they are very important notices, because they alert you to some sort of problem in the software or functional system of your website.
    People on this forum have a reputation for helping resolve these issues - but in many cases will reply with equally-confusing "tech-speak" solutions, leaving you with no real way of resolving it yourself.
    In almost all cases, such reports relatate to either:
    1. A fault in the software you've installed
    2. A misconfiguration of the SERVER where the website is hosted.
    If you are a total novice when it comes to software (and most of us are - including me), then the only option is to find someone (who may or may not ask for payment) to help you fix the issue.
    Again, there are scores of people on this forum who can, and do, offer help - and I would recommend using dedicated zencart fans, and NOT some freelancer that you will find on popular freelancer portals. People on this forum will NOT rip you off, if there is a fee to be charged, and (certainly in my experience) you will be paying reasonable fees for their work.
    This is all part of running a business... there are costs... and you want to be sure you're getting the best advice. If you need to hire someone, look first on this forum.
    20 years a Zencart User

  4. #4
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,133
    Plugin Contributions
    11

    Default Re: can i ask what this is

    In this case, the OP changed the defines rather than remove them from between the single quotes in the define statement.

    What's there now
    Code:
    /** * @copyright Copyright 2003-2020 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: Scott C Wilson 2020 Apr 10 Modified in v1.5.7 $
     */
    
    
    // page title
    define('meta_tags');
    
    
    // Site Tagline
    define('');
    What should be there IF you don't want the items to show up
    Code:
    /** * @copyright Copyright 2003-2020 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: Scott C Wilson 2020 Apr 10 Modified in v1.5.7 $
     */
    
    
    // page title
    define('TITLE', '');
    
    
    // Site Tagline
    define(SITE_TAGLINE', '');
    Even if you do not wish to have the title or tagline to show on the site, the system will still look for those variables. It won't mind if you've decided to have them blank but it will mind if you make it where the VARIABLE can't be found.
    Last edited by dbltoe; 17 Jul 2022 at 06:44 PM.

  5. #5
    Join Date
    Sep 2019
    Location
    Tamworth
    Posts
    10
    Plugin Contributions
    0

    Default Re: can i ask what this is

    oh my god thank you soo much

  6. #6
    Join Date
    Sep 2019
    Location
    Tamworth
    Posts
    10
    Plugin Contributions
    0

    Default Re: can i ask what this is

    ummmm your going to think i'm stupid but which css to i change is it ???? because this is where i'm confused i know you said responsive_classic but which page the of the css templates Click image for larger version. 

Name:	css.jpg 
Views:	52 
Size:	55.8 KB 
ID:	20064 if i know which one i can change it thank you

  7. #7
    Join Date
    Sep 2019
    Location
    Tamworth
    Posts
    10
    Plugin Contributions
    0

    Default Re: can i ask what this is

    hello i just had a look it looks just like you posted now it even staited it on my addmine pop up bug ???? how did you get in there lol lol lol

  8. #8
    Join Date
    Sep 2019
    Location
    Tamworth
    Posts
    10
    Plugin Contributions
    0

    Default Re: can i ask what this is

    sorry for posting so much but i just wanted you to know Click image for larger version. 

Name:	ccs2.jpg 
Views:	50 
Size:	17.9 KB 
ID:	20065 Click image for larger version. 

Name:	css3.jpg 
Views:	51 
Size:	29.7 KB 
ID:	20066 thank you

  9. #9
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,133
    Plugin Contributions
    11

    Default Re: can i ask what this is

    Quote Originally Posted by dbltoe View Post
    What should be there IF you don't want the items to show up
    Code:
    /** * @copyright Copyright 2003-2020 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: Scott C Wilson 2020 Apr 10 Modified in v1.5.7 $
     */
    
    
    // page title
    define('TITLE', '');
    
    
    // Site Tagline
    define('SITE_TAGLINE', '');
    Even if you do not wish to have the title or tagline to show on the site, the system will still look for those variables. It won't mind if you've decided to have them blank but it will mind if you make it where the VARIABLE can't be found.
    Somehow, in the edits, the single quote in front of SITE_TAGLINE was left off.

    Fixed now.

  10. #10
    Join Date
    Jul 2012
    Posts
    16,732
    Plugin Contributions
    17

    Default Re: can i ask what this is

    Quote Originally Posted by Virginia73 View Post
    ummmm your going to think i'm stupid but which css to i change is it ???? because this is where i'm confused i know you said responsive_classic but which page the of the css templates Click image for larger version. 

Name:	css.jpg 
Views:	52 
Size:	55.8 KB 
ID:	20064 if i know which one i can change it thank you
    This is best determined by one visiting the page in question with the desired result explained. Then while there, use the developer tools of your browser to determine which css files are being used to present the page. Generally, the developer tools can be accessed by pressing F12 on your keyboard.

    Don't fear asking questions, one suggestion though is to keep a thread pertinent to the topic at hand. That way the questions asked can be better tracked and issues understood.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

 

 

Similar Threads

  1. Can someone tell me what add on was used on this site to create this zoom effect?
    By strugglingnovice in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 29 Jun 2010, 10:59 PM
  2. What is This Template & Where can i get this Template?
    By hcd888 in forum General Questions
    Replies: 3
    Last Post: 3 Mar 2010, 02:25 PM
  3. Can anyone tell me what this means?
    By buyashed in forum General Questions
    Replies: 1
    Last Post: 9 Jun 2007, 08:50 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