Page 1 of 4 123 ... LastLast
Results 1 to 10 of 657

Hybrid View

  1. #1
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default

    I was in and out when I replied so I didn't see your post edit.. LOL..
    Re:Super Order patch, it's available in the Zen Cart downloads now..

    Re: Product tax & shipping tax fields.. Those two fields have for the longest only been display only fields in Edit Orders.. Youll see the values entered on the order, but the update does not update any of the product line or order totals based on the values entered in these fields..(you have to manually update them yourself) Shipping tax clearly indicates this on the Edit Orders page, while the prodct tax is not so clearly labeled.. This is something that will be examined and possibly addressed in the next update..

    Quote Originally Posted by dw08gm View Post
    Yes and also the shipping tax.

    Did you happen see my point 4 - re superorders patch - which I added as a post edit.

    Cheers
    Posted via Mobile Device

  2. #2
    Join Date
    Sep 2008
    Location
    DownUnder, overlooking South Pole.
    Posts
    984
    Plugin Contributions
    6

    Default Re: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread

    Quote Originally Posted by DivaVocals View Post
    Re:Super Order patch, it's available in the Zen Cart downloads now..
    Thanks

    Found it in Edit_Orders v3.0 rev1a

    http://www.zen-cart.com/index.php?ma...oducts_id=1818

    Cheers

  3. #3
    Join Date
    Dec 2010
    Location
    Well... across all the world, a while here then there...
    Posts
    13
    Plugin Contributions
    0

    help question Re: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread

    Hi guys, I just install latest Edit Orders, but I have problem once I trying edit order. I can see only empty screen.
    My log say this:

    Code:
    [08-Dec-2010 22:34:30] PHP Warning:  require(includes/languages/1.php) [<a href='function.require'>function.require</a>]: failed to open stream: No such file or directory in /home/xxxx/includes/init_includes/init_languages.php on line 35
    [08-Dec-2010 22:34:30] PHP Warning:  require(includes/languages/1.php) [<a href='function.require'>function.require</a>]: failed to open stream: No such file or directory in /home/xxxx/includes/init_includes/init_languages.php on line 35
    [08-Dec-2010 22:34:30] PHP Fatal error:  require() [<a href='function.require'>function.require</a>]: Failed opening required 'includes/languages/1.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/xxxx/includes/init_includes/init_languages.php on line 35
    I have been looking into the file init_languages.php

    Code:
    <?php
    /**
     * @package admin
     * @copyright Copyright 2003-2010 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: init_languages.php 15995 2010-04-19 17:41:54Z drbyte $
     */
    if (!defined('IS_ADMIN_FLAG')) {
      die('Illegal Access');
    }
    // set the language
      if (!isset($_SESSION['language']) || isset($_GET['language'])) {
    
        include(DIR_WS_CLASSES . 'language.php');
        $lng = new language();
    
        if (isset($_GET['language']) && zen_not_null($_GET['language'])) {
          $lng->set_language($_GET['language']);
        } else {
          $lng->get_browser_language();
          $lng->set_language(DEFAULT_LANGUAGE);
        }
    
        $_SESSION['language'] = (zen_not_null($lng->language['directory']) ? $lng->language['directory'] : 'english');
        $_SESSION['languages_id'] = (zen_not_null($lng->language['id']) ? $lng->language['id'] : 1);
        $_SESSION['languages_code'] = (zen_not_null($lng->language['code']) ? $lng->language['code'] : 'en');
      }
    
    // temporary patch for lang override chicken/egg quirk
      $template_query = $db->Execute("select template_dir from " . TABLE_TEMPLATE_SELECT . " where template_language in (" . (int)$_SESSION['languages_id'] . ', 0' . ") order by template_language DESC");
      $template_dir = $template_query->fields['template_dir'];
    
    // include the language translations
      require(DIR_WS_LANGUAGES . $_SESSION['language'] . '.php');
      $current_page = basename($PHP_SELF);
      if (file_exists(DIR_WS_LANGUAGES . $_SESSION['language'] . '/' . $current_page)) {
        include(DIR_WS_LANGUAGES . $_SESSION['language'] . '/' . $current_page);
      }
    
      if ($za_dir = @dir(DIR_WS_LANGUAGES . $_SESSION['language'] . '/extra_definitions')) {
        while ($zv_file = $za_dir->read()) {
          if (strstr($zv_file, '.php')) {
            require(DIR_WS_LANGUAGES . $_SESSION['language'] . '/extra_definitions/' . $zv_file);
          }
        }
        $za_dir->close();
      }
    See the red code.

    Can you help me please ?

    Thank you.

    BTW I merged all files properly and copy all folders as it should be.

  4. #4
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread

    Is your store's default language something other than english??? I'm guessing here, but the parts highlighted in blue would seem to lean towards you having a language file named 1.php which Edit Orders cannot find since there are no language files in Edit Orders for this language.. (which by the way is kinda non-standard for how language files are usually named)

    Quote Originally Posted by cyberian37 View Post
    Hi guys, I just install latest Edit Orders, but I have problem once I trying edit order. I can see only empty screen.
    My log say this:

    Code:
    [08-Dec-2010 22:34:30] PHP Warning:  require(includes/languages/1.php) [<a href='function.require'>function.require</a>]: failed to open stream: No such file or directory in /home/xxxx/includes/init_includes/init_languages.php on line 35
    [08-Dec-2010 22:34:30] PHP Warning:  require(includes/languages/1.php) [<a href='function.require'>function.require</a>]: failed to open stream: No such file or directory in /home/xxxx/includes/init_includes/init_languages.php on line 35
    [08-Dec-2010 22:34:30] PHP Fatal error:  require() [<a href='function.require'>function.require</a>]: Failed opening required 'includes/languages/1.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/xxxx/includes/init_includes/init_languages.php on line 35
    I have been looking into the file init_languages.php

    Code:
    <?php
    /**
     * @package admin
     * @copyright Copyright 2003-2010 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: init_languages.php 15995 2010-04-19 17:41:54Z drbyte $
     */
    if (!defined('IS_ADMIN_FLAG')) {
      die('Illegal Access');
    }
    // set the language
      if (!isset($_SESSION['language']) || isset($_GET['language'])) {
    
        include(DIR_WS_CLASSES . 'language.php');
        $lng = new language();
    
        if (isset($_GET['language']) && zen_not_null($_GET['language'])) {
          $lng->set_language($_GET['language']);
        } else {
          $lng->get_browser_language();
          $lng->set_language(DEFAULT_LANGUAGE);
        }
    
        $_SESSION['language'] = (zen_not_null($lng->language['directory']) ? $lng->language['directory'] : 'english');
        $_SESSION['languages_id'] = (zen_not_null($lng->language['id']) ? $lng->language['id'] : 1);
        $_SESSION['languages_code'] = (zen_not_null($lng->language['code']) ? $lng->language['code'] : 'en');
      }
    
    // temporary patch for lang override chicken/egg quirk
      $template_query = $db->Execute("select template_dir from " . TABLE_TEMPLATE_SELECT . " where template_language in (" . (int)$_SESSION['languages_id'] . ', 0' . ") order by template_language DESC");
      $template_dir = $template_query->fields['template_dir'];
    
    // include the language translations
      require(DIR_WS_LANGUAGES . $_SESSION['language'] . '.php');
      $current_page = basename($PHP_SELF);
      if (file_exists(DIR_WS_LANGUAGES . $_SESSION['language'] . '/' . $current_page)) {
        include(DIR_WS_LANGUAGES . $_SESSION['language'] . '/' . $current_page);
      }
    
      if ($za_dir = @dir(DIR_WS_LANGUAGES . $_SESSION['language'] . '/extra_definitions')) {
        while ($zv_file = $za_dir->read()) {
          if (strstr($zv_file, '.php')) {
            require(DIR_WS_LANGUAGES . $_SESSION['language'] . '/extra_definitions/' . $zv_file);
          }
        }
        $za_dir->close();
      }
    See the red code.

    Can you help me please ?

    Thank you.

    BTW I merged all files properly and copy all folders as it should be.
    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.

  5. #5
    Join Date
    Dec 2010
    Location
    Well... across all the world, a while here then there...
    Posts
    13
    Plugin Contributions
    0

    Default Re: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread

    Actually no, it's English only. Yes I notice that as well, just don't understand it. I even never had any different language installed then English.

  6. #6
    Join Date
    Dec 2010
    Location
    Well... across all the world, a while here then there...
    Posts
    13
    Plugin Contributions
    0

    Default Re: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread

    Yes I saw that thread too, but it does not help. Also I try to add there an other file "1.php", but then it show me this error:

    Code:
    [09-Dec-2010 12:25:39] PHP Warning:  require(includes/languages/englishenglish.php) [<a href='function.require'>function.require</a>]: failed to open stream: No such file or directory in /home/xxxx/includes/init_includes/init_languages.php on line 35
    [09-Dec-2010 12:25:39] PHP Warning:  require(includes/languages/englishenglish.php) [<a href='function.require'>function.require</a>]: failed to open stream: No such file or directory in /home/xxxx/includes/init_includes/init_languages.php on line 35
    [09-Dec-2010 12:25:39] PHP Fatal error:  require() [<a href='function.require'>function.require</a>]: Failed opening required 'includes/languages/englishenglish.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/xxxx/includes/init_includes/init_languages.php on line 35
    It look like I did not merge properly my files, but I did try this so many time.

    I have not really clue what to do.

    Thank you for any advice.

  7. #7
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread

    The issue is truly NOT with this module but in how you have your store configured.. The error CLEARLY indicates (as that thread I pointed you to also indicated) that your store is attempting to look for a language file that DOES NOT EXIST in your admin.. I promise you that this is NOT an issue with Edit Orders.. It appears that Edit Orders is failing to run because you HAVE ANOTHER issue with your store.. Without seeing your store files I cannot say WHAT you have going on or what went wrong..

    This is a STRAIGHTFORWARD install.. ONLY ONE file overwrites any of the core Zen Cart code.. Once you renamed the admin folders to match your own admin it should just WORK..

    Out of curiosity you aren't using a Template Monster template are you??

    Quote Originally Posted by cyberian37 View Post
    Yes I saw that thread too, but it does not help. Also I try to add there an other file "1.php", but then it show me this error:

    Code:
    [09-Dec-2010 12:25:39] PHP Warning:  require(includes/languages/englishenglish.php) [<a href='function.require'>function.require</a>]: failed to open stream: No such file or directory in /home/xxxx/includes/init_includes/init_languages.php on line 35
    [09-Dec-2010 12:25:39] PHP Warning:  require(includes/languages/englishenglish.php) [<a href='function.require'>function.require</a>]: failed to open stream: No such file or directory in /home/xxxx/includes/init_includes/init_languages.php on line 35
    [09-Dec-2010 12:25:39] PHP Fatal error:  require() [<a href='function.require'>function.require</a>]: Failed opening required 'includes/languages/englishenglish.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/xxxx/includes/init_includes/init_languages.php on line 35
    It look like I did not merge properly my files, but I did try this so many time.

    I have not really clue what to do.

    Thank you for any advice.
    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.

  8. #8
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Edit Orders v3.0 for Zen Cart 1.3.9 Support Thread

    Wanted to add a few thoughts.. You have either got something else going on with your store or you have installed Edit Orders incorrectly.. Either way the error message you are getting is VERY clear. Zen Cart is looking for a language file it cannot find..

    Did you RENAME all the the "YOUR_ADMIN_TEMPLATE" folders in the Edit Orders fileset BEFORE you uploaded them to your site??

    Did you remove any language files??

    Did you ADD any language files??

    Did you change your default language??


    Just wanted to show you that if you seach this forum for "includes/init_includes/init_languages.php" that EVERY ONE of these posts points to a MISSING language file..
    http://www.zen-cart.com/forum/showpo...90&postcount=2
    http://www.zen-cart.com/forum/showth..._languages.php
    http://www.zen-cart.com/forum/showth..._languages.php
    http://www.zen-cart.com/forum/showth..._languages.php
    http://www.zen-cart.com/forum/showth..._languages.php

    Now let me be clear... MISSING means that Zen Cart cannot find it and this COULD happen if you did not rename the admin folders in the Edit Order fileset as per the CLEAR instructions in the readme to do this before you upload the files to your server..


    Again, I am giving you my best suggestions based on the information you have provided.. without seeing your site files, I cannot say what has happened here..

    Quote Originally Posted by cyberian37 View Post
    Yes I saw that thread too, but it does not help. Also I try to add there an other file "1.php", but then it show me this error:

    Code:
    [09-Dec-2010 12:25:39] PHP Warning:  require(includes/languages/englishenglish.php) [<a href='function.require'>function.require</a>]: failed to open stream: No such file or directory in /home/xxxx/includes/init_includes/init_languages.php on line 35
    [09-Dec-2010 12:25:39] PHP Warning:  require(includes/languages/englishenglish.php) [<a href='function.require'>function.require</a>]: failed to open stream: No such file or directory in /home/xxxx/includes/init_includes/init_languages.php on line 35
    [09-Dec-2010 12:25:39] PHP Fatal error:  require() [<a href='function.require'>function.require</a>]: Failed opening required 'includes/languages/englishenglish.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/xxxx/includes/init_includes/init_languages.php on line 35
    It look like I did not merge properly my files, but I did try this so many time.

    I have not really clue what to do.

    Thank you for any advice.
    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.

  9. #9
    Join Date
    Apr 2011
    Posts
    3
    Plugin Contributions
    1

    Default Re: Edit Orders v3.0 for Zen Cart 1.3.9 [Support Thread]

    after i adding products am pressing update button it shows blank page, am using 1.3.9h.... help me anybody... thanks in advance.....

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

    Default Re: Edit Orders v3.0 for Zen Cart 1.3.9 [Support Thread]

    Quote Originally Posted by Senthil7 View Post
    after i adding products am pressing update button it shows blank page, am using 1.3.9h.... help me anybody... thanks in advance.....
    Check your cache folders for error logs (blank page = error). What does the error log say??
    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.

 

 
Page 1 of 4 123 ... LastLast

Similar Threads

  1. v150 Super Orders v4.0 Support Thread for ZC v1.5.x
    By DivaVocals in forum Addon Admin Tools
    Replies: 817
    Last Post: 29 Apr 2026, 07:53 PM
  2. v150 Edit Orders v4.0 Support Thread
    By DivaVocals in forum Addon Admin Tools
    Replies: 1909
    Last Post: 22 Dec 2025, 03:25 AM
  3. v150 Orders Status History -- Updated By [Support Thread]
    By lat9 in forum Addon Admin Tools
    Replies: 34
    Last Post: 29 Jul 2019, 07:05 PM
  4. v139h Super Orders v3.0 Support Thread (for ZC v1.3.9)
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 1018
    Last Post: 28 Apr 2014, 11:38 PM
  5. RE: Super Orders v3.0 Support Thread
    By Johnnyd in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 22 Jun 2011, 09:28 AM

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