Page 2 of 5 FirstFirst 1234 ... LastLast
Results 11 to 20 of 45
  1. #11
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,488
    Plugin Contributions
    88

    Default Re: myDEBUG Backtrace [Support Thread]

    Quote Originally Posted by devyani View Post
    I checked, there is no result for this match. I am searching in the last option (Look-up in all files) of the developer's tool kit & as advised by you, I am selecting both catalogue and admin files . Also I have selected both php and css.
    Hmm, for right now, I suggest that you start a different thread with the issue that you have (it's not with the backtrace plugin).

  2. #12
    Join Date
    Aug 2011
    Posts
    199
    Plugin Contributions
    0

    Default Re: myDEBUG Backtrace [Support Thread]

    Okies

  3. #13
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: myDEBUG Backtrace [Support Thread]

    There is a difference in one common file used in two of your modules, and I'm not sure which one is the RIGHT one..
    display_logs-1.0.9.zip\display_logs-1.0.9\YOUR_ADMIN\display_logs.php says:
    Code:
    <div id="dSel"><?php echo zen_image_submit(BUTTON_DELETE_SELECTED, DELETE_SELECTED_ALT, 'name="dButton" value="delete" onclick="return buttonCheck(\'delete\');"'); /*v1.0.6c*/ ?></div>
                <div id="dAll"><?php echo zen_image_submit(BUTTON_DELETE_ALL, DELETE_ALL_ALT, 'name="sButton" value="all" onclick="return buttonCheck(\'all\');"'); /*v1.0.6c*/ ?></div>
    mydebug_backtrace-v1.0.0.zip\mydebug_backtrace\YOUR_ADMIN\display_logs.php says:
    Code:
                <div id="dSel"><?php echo zen_image_submit(BUTTON_DELETE_SELECTED, DELETE_SELECTED_ALT, 'name="dButton" value="delete" onclick="return buttonCheck(this.value);"'); ?></div>
                <div id="dAll"><?php echo zen_image_submit(BUTTON_DELETE_ALL, DELETE_ALL_ALT, 'name="sButton" value="all" onclick="return buttonCheck(this.value);"'); ?></div>
    Which one is correct??? I am ASSUMING it's the one from display_logs-1.0.9.zip
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  4. #14
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,488
    Plugin Contributions
    88

    Default Re: myDEBUG Backtrace [Support Thread]

    Well, , where did those files come from? You're correct, Diva, that you should use the files from the Display Debug Logs plugin and I'll resubmit the myDEBUG Backtrace zip-file to remove those tag-alongs. Thanks for taking the time to let me know!

  5. #15
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: myDEBUG Backtrace [Support Thread]

    Quote Originally Posted by lat9 View Post
    Well, , where did those files come from? You're correct, Diva, that you should use the files from the Display Debug Logs plugin and I'll resubmit the myDEBUG Backtrace zip-file to remove those tag-alongs. Thanks for taking the time to let me know!
    hahahahaha it happens.. By the by, the myDEBUG Backtrace module + this module saved me a MASSIVE headache yesterday.. Found an error with these two I would not have OTHERWISE found.. PURE GOLD!!!! These are NOW "must install" modules forever for me!!!

    You KNOW you rock right????
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  6. #16
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,488
    Plugin Contributions
    88

    Default Re: myDEBUG Backtrace [Support Thread]

    Thanks muchly, Diva. I've submitted v1.0.1 to the Plugins ... with the stray files removed.

  7. #17
    Join Date
    Jul 2004
    Location
    Las Vegas
    Posts
    477
    Plugin Contributions
    0

    Default Re: myDEBUG Backtrace [Support Thread]

    Will this work for 1.3.9 installs even though it is designated for 1.5+
    User of zencart

  8. #18
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,488
    Plugin Contributions
    88

    Default Re: myDEBUG Backtrace [Support Thread]

    Quote Originally Posted by batteryman View Post
    Will this work for 1.3.9 installs even though it is designated for 1.5+
    It should work just fine. Just be sure to backup the two (possibly) overwritten files before you install.

  9. #19
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,488
    Plugin Contributions
    88

    Default Re: myDEBUG Backtrace [Support Thread]

    Quote Originally Posted by lat9 View Post
    Thanks muchly, Diva. I've submitted v1.0.1 to the Plugins ... with the stray files removed.
    v1.0.1 is now available for download ...

  10. #20
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,488
    Plugin Contributions
    88

    Default Re: myDEBUG Backtrace [Support Thread]

    Oopsie! I've just submitted v1.0.2 to the plugins' area; it will be available for download once reviewed.

    The admin-level file (/YOUR_ADMIN/includes/extra_configures/enable_error_logging.php) mistakenly removed the -adm distinction on log file names generated during admin-level accesses. To implement the correction, find the following fragment in that file:
    Code:
    /**
     * The path where the debug log file will be located
     * Default value is: DIR_FS_LOGS . '/myDEBUG-999999-00000000.log'
     * ... which puts it in the /logs/ folder:   /logs/myDEBUG-999999-00000000.log  (where 999999 is a random number, and 00000000 is the server's timestamp)
     *    (or if you don't have a /logs/ folder, it will use the /cache/ folder instead)
     */
      $debug_logfile_path = DIR_FS_LOGS . '/myDEBUG-' . time() . '-' . mt_rand(1000,999999) . '.log';
    and make the teeny modification shown below:
    Code:
    /**
     * The path where the debug log file will be located
     * Default value is: DIR_FS_LOGS . '/myDEBUG-999999-00000000.log'
     * ... which puts it in the /logs/ folder:   /logs/myDEBUG-999999-00000000.log  (where 999999 is a random number, and 00000000 is the server's timestamp)
     *    (or if you don't have a /logs/ folder, it will use the /cache/ folder instead)
     */
      $debug_logfile_path = DIR_FS_LOGS . '/myDEBUG-adm-' . time() . '-' . mt_rand(1000,999999) . '.log';

 

 
Page 2 of 5 FirstFirst 1234 ... LastLast

Similar Threads

  1. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 19
    Last Post: 23 Jan 2023, 08:04 AM
  2. Wordpress On ZC [Support Thread]
    By hira in forum All Other Contributions/Addons
    Replies: 1858
    Last Post: 17 Jan 2014, 01:24 AM
  3. Replies: 4
    Last Post: 19 Jan 2013, 05:47 AM
  4. SnapShot [support thread]
    By skipwater in forum All Other Contributions/Addons
    Replies: 32
    Last Post: 26 Oct 2012, 08:38 PM
  5. PurpleShades Support Thread
    By kobra in forum Addon Templates
    Replies: 122
    Last Post: 18 May 2011, 07:18 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