Page 11 of 179 FirstFirst ... 9101112132161111 ... LastLast
Results 101 to 110 of 1784
  1. #101
    Join Date
    Feb 2013
    Location
    Southampton, United Kingdom
    Posts
    40
    Plugin Contributions
    0

    Default Re: Edit Orders v4.1 Released

    edit orders 4.1
    zencart 1.5.1
    mrrp module installed
    installed successfully message was displayed
    no error logs


    Regards

    Phil



    Quote Originally Posted by lhungil View Post
    I've not been able to duplicate this yet in a test store or a clone of a production store. Can you supply some additional information?

    What version of Edit Orders?
    What version of Zen Cart?
    What order total modules do you have installed?
    What order total modules do you have enabled?
    What message did you see at the top of the screen after installing Edit Orders and clicking "Admin Home"?
    What if any Zen Cart error logs exist (/cache/ in 1.5.0 and /logs/ in 1.5.1 - use FTP to look)?
    What other modifications (plugins, add-ons, etc) have been done?

  2. #102
    Join Date
    Feb 2007
    Posts
    17
    Plugin Contributions
    0

    Default Re: Edit Orders v4.1 Released

    Quote Originally Posted by lhungil View Post
    Can you check the "/logs" and "/cache" folder for any error messages?
    Effectively I fount, inside log folder, some mydebug.log files, with the following maessage:

    (/..../myadmin/includes/auto_loaders/config.eo.php): Permission denied in /..../myadmin/includes/init_includes/init_eo_config.php on line 84

    The file /.../myadmin/includes/auto_loaders/config.eo.php has been manually deleted after installation.

    Something wrong during the installation ?

    Thans for help

  3. #103
    Join Date
    Feb 2012
    Location
    mostly harmless
    Posts
    1,809
    Plugin Contributions
    8

    Default Re: Edit Orders v4.1 Released

    MSRP does make some changes to the the Zen Cart pricing functions. At a quick glance it makes the changes on the catalog side to functions_prices.php, but not the admin side of the same file (Edit Orders uses the Zen Cart functions on the admin side). Can you try removing MSRP and see what happens?

    Also can you tell us which Order Total Modules you have installed + enabled? "admin" -> "modules" -> "order total".
    Example List of Modules:
    Gift Certificates sort_order: 840
    Low Order Fee sort_order: 400
    Shipping sort_order: 200
    Sub-Total sort_order: 100
    Tax sort_order: 300
    Total sort_order: 999
    The glass is not half full. The glass is not half empty. The glass is simply too big!
    Where are the Zen Cart Debug Logs? Where are the HTTP 500 / Server Error Logs?
    Zen Cart related projects maintained by lhûngîl : Plugin / Module Tracker

  4. #104
    Join Date
    Feb 2012
    Location
    mostly harmless
    Posts
    1,809
    Plugin Contributions
    8

    Default Re: Edit Orders v4.1 Released

    Quote Originally Posted by nannid View Post
    ... (/..../myadmin/includes/auto_loaders/config.eo.php): Permission denied in /..../myadmin/includes/init_includes/init_eo_config.php on line 84
    ...
    Something wrong during the installation ?
    All this indicates is the user your webserver runs as did not have permission to delete the file, so the installation script could not delete the file.

    If you go back through the installation and login to your admin before uploading and then click on "Admin Home" right after uploading, you should see some messages at the top of the browser. If the only message indicates you need to manually delete this file, you can probably safely delete the indicated file. If there are other messages you should address those first.

    Can you also answer the questions posted here.
    The glass is not half full. The glass is not half empty. The glass is simply too big!
    Where are the Zen Cart Debug Logs? Where are the HTTP 500 / Server Error Logs?
    Zen Cart related projects maintained by lhûngîl : Plugin / Module Tracker

  5. #105
    Join Date
    Feb 2007
    Posts
    17
    Plugin Contributions
    0

    Default Re: Edit Orders v4.1 Released

    In the previous installation, I deleted by hands the file config.eo.php
    After your reply, I recharged that file declaring 777 all autoloader folder and subfolder. In this case the message was: Edit Orders v4.1 install completed!

    But the problem persists.

    I have to said that I have excluded the sending mail, in my installation.
    (The objective is simply to provide the admin to make quotation).

    The other caractheristics, as per your require, are:

    What version of Edit Orders? Edit Orders 4.1

    What version of Zen Cart? 1.5.1

    What order total modules do you have installed?
    COD Fee ot_cod_fee
    Discount Coupon ot_coupon
    Group Discount ot_group_pricing 290
    Gift Certificates ot_gv
    Low Order Fee ot_loworderfee
    Shipping ot_shipping
    Sub-Total ot_subtotal 100
    Tax ot_tax 300
    Total ot_total 999

    What order total modules do you have enabled?
    Group Discount ot_group_pricing 290
    Sub-Total ot_subtotal 100
    Tax ot_tax 300
    Total ot_total 999

    What message did you see at the top of the screen after installing Edit Orders and clicking "Admin Home"?
    Edit Orders v4.1 install completed!

    What if any Zen Cart error logs exist (/cache/ in 1.5.0 and /logs/ in 1.5.1 - use FTP to look)?
    None

    What other modifications (plugins, add-ons, etc) have been done?
    None

  6. #106
    Join Date
    Feb 2012
    Location
    mostly harmless
    Posts
    1,809
    Plugin Contributions
    8

    Default Re: Edit Orders v4.1 Released

    Thank You nannid and Phil Lomas for your feedback. I believe I have now narrowed down the cause.

    Can you please try the following fix and let me know if it works in your environments?
    1. Remove all products from the affected order (or cancel the order). Make sure the Order Total is Zero (the bug should cause this to be true).
    2. Make the code change listed below.
    3. Add the products back to your order (or to a new order).


    Edit "/admin/includes/functions/extra_functions/edit_orders_functions.php" as follows:

    Starting at line 1134 replace:
    Code:
    	// Remove order totals already present in the order
    	$module_list = explode(';', (str_replace('.php', '', MODULE_ORDER_TOTAL_INSTALLED)));
    	$order_totals = eo_get_order_total_by_order($oID);
    	if($order_totals !== null) {
    		foreach($order_totals as $class => $total) {
    			$keys = array_keys($module_list, $class);
    			foreach($keys as $key) {
    				if($key != 'ot_local_sales_taxes') unset($module_list[$key]);
    			}
    		}
    	}
    With the following code:
    Code:
    	// Remove order totals already present in the order
    	$module_list = explode(';', (str_replace('.php', '', MODULE_ORDER_TOTAL_INSTALLED)));
    	$order_totals = eo_get_order_total_by_order($oID);
    	if($order_totals !== null) {
    		foreach($order_totals as $class => $total) {
    			if($class == 'ot_local_sales_taxes') continue;
    			$keys = array_keys($module_list, $class);
    			foreach($keys as $key) {
    				unset($module_list[$key]);
    			}
    		}
    	}
    The glass is not half full. The glass is not half empty. The glass is simply too big!
    Where are the Zen Cart Debug Logs? Where are the HTTP 500 / Server Error Logs?
    Zen Cart related projects maintained by lhûngîl : Plugin / Module Tracker

  7. #107
    Join Date
    Feb 2012
    Location
    mostly harmless
    Posts
    1,809
    Plugin Contributions
    8

    Default Re: Edit Orders v4.1 Released

    Quote Originally Posted by nannid View Post
    I have to said that I have excluded the sending mail, in my installation.
    (The objective is simply to provide the admin to make quotation).
    The module only sends an email when the status has changed (or a comment is added) and "Notify Customer" is set to "Email". You may want to consider just changing the default to either "No Email" or "Hide" depending upon if you want your customer's to be able to see the comments in their order history.

    Most of my clients have an additional "order status" called "quoted" or "freight quoted". When they are done editing an order they simply change the status (and type in an appropriate statement in the comments) - and select Notify Customer by Email. The stock Zen Cart email (modified for my client's of course) will then notify the customer their order has been "Quoted". I typically recommend my clients also follow up with a phone call when possible to ensures the customer knows they need to contact the store to finish placing the order.

    But in the end, it is all about what works for you :)
    Last edited by lhungil; 23 Apr 2013 at 03:24 PM.
    The glass is not half full. The glass is not half empty. The glass is simply too big!
    Where are the Zen Cart Debug Logs? Where are the HTTP 500 / Server Error Logs?
    Zen Cart related projects maintained by lhûngîl : Plugin / Module Tracker

  8. #108
    Join Date
    Feb 2007
    Posts
    17
    Plugin Contributions
    0

    Default Re: Edit Orders v4.1 Released

    Solved !!!

    I applied your suggested modifications and your sw runs correctly.

    I tried both with an admin order and with an order produced by the front end.

    Many thanks for your fundamental help.

  9. #109
    Join Date
    Feb 2013
    Location
    Southampton, United Kingdom
    Posts
    40
    Plugin Contributions
    0

    Default Re: Edit Orders v4.1 Released

    Hi Lungil

    Yes works for me too.

    Thanks

    Phil

  10. #110
    Join Date
    Apr 2013
    Location
    north carolina
    Posts
    110
    Plugin Contributions
    0

    Default Re: Edit Orders v4.1 Released

    Hi,


    A different problem, with a brand new installation. When I click the "edit" icon or button for any order, I get this error:
    ===Server error
    The website encountered an error while retrieving SITE/ADMIN/edit_orders.php?page=1&oID=(order id #)&action=edit. It may be down for maintenance or configured incorrectly.
    HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfill the request.===


    I followed the install readme to a t with 1 exception: I did *not* overwite ZC's icon_edit.gif in ADMIN/images. I actually uninstalled and re-installed just to make sure, with the same result both times. So far I have *not* modified any of the EO code.


    Answers to questions asked of other users with problems:


    What version of Edit Orders?
    4.1 (release dated April 12, 2013)


    What version of Zen Cart?
    1.5.1


    What order total modules do you have installed/enabled?


    INSTALLED BUT NOT ENABLED (came with ZC):
    COD Fee ot_cod_fee
    Discount Coupon ot_coupon
    Group Discount ot_group_pricing
    Low Order Fee ot_loworderfee


    INSTALLED & ENABLED:
    Gift Certificates ot_gv
    Shipping ot_shipping
    Sub-Total ot_subtotal
    Tax ot_tax
    Discount Coupon ot_taxcloud_coupon
    Exemption Certificates ot_taxcloud_exemption
    Total ot_total


    What message did you see at the top of the screen after installing Edit Orders and clicking "Admin Home"?
    Edit Orders v4.1 install completed!


    What if any Zen Cart error logs exist (/cache/ in 1.5.0 and /logs/ in 1.5.1 - use FTP to look)?
    None related to EO


    What other modifications (plugins, add-ons, etc) have been done? (zip file names)
    ceon_uri_mapping_4.4.1_for_zc
    ckeditor-for-zencart
    column_layout_grid_2_3_1
    confirm-email-double-entry
    Contact Us - Add Subject
    EasyPopulate-4.0-master
    Frontpage_Slideshow.v2.0.2
    new-msrp-display_for_1.5
    Return Authorization 3.0.0
    taxcloud_1.5.2_for_zc_151
    USPS v15 Ratev4 2013_0127 R2013_0327
    (Bolded those that have anything to do with orders, but none appear to have modified any of the files changed by EO.)
    At this time I have not installed ty_package_tracker yet, but it's on my list of possibilities.

    I'll appreciate any insight/assistance. Thank you!
    Magz

 

 
Page 11 of 179 FirstFirst ... 9101112132161111 ... LastLast

Similar Threads

  1. v150 Super Orders v4.0 Support Thread for ZC v1.5.x
    By DivaVocals in forum Addon Admin Tools
    Replies: 797
    Last Post: 23 Mar 2024, 06:51 AM
  2. 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
  3. Edit Orders v3.0 for ZC 1.3.9 [Support Thread]
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 656
    Last Post: 18 Apr 2016, 06:28 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

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