Page 13 of 17 FirstFirst ... 31112131415 ... LastLast
Results 121 to 130 of 168
  1. #121
    Join Date
    Jun 2006
    Posts
    298
    Plugin Contributions
    0

    Default Re: Flexible Return Authorization (RMA) Support Thread

    Quote Originally Posted by richardtuttle View Post
    Any updates on this plugin working with ZC 1.5.3? I have installed it following the instructions and am also getting the "WARNING: An error occurred, please refresh the page and try again." issue.
    Same here. I tried the fix in post 95, but no luck. The error in my log is:

    [07-Jan-2015 14:07:12] PHP Fatal error: 1136:Column count doesn't match value count at row 1 :: INSERT INTO zen_configuration VALUES (NULL, 'Display Name field options','RETURN_NAME','1','Display Name field as:<br />0 = Display as Optional<br />1 = Display as Required<br />2 = Do not Display', '92',1, NULL, NOW(), NULL, 'zen_cfg_select_option(array(\'0\', \'1\', \'2\'),') ==> (as called by) /admin/includes/init_includes/init_ra_config.php on line 53 <== in /includes/classes/db/mysql/query_factory.php on line 155

  2. #122
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

    Default Re: Flexible Return Authorization (RMA) Support Thread

    Quote Originally Posted by abcisme View Post
    Same here. I tried the fix in post 95, but no luck. The error in my log is:
    I've just installed on a ZC 1.5.4 site I'm building, did not do any fixing... no problems. Works running return tests..

    however, I can see after reading the int_ file where you could be getting issues if the configuation table is no longer a standard format... 'Column count doesn't match value count'. Not to hard to recode the int file so to cover the non-standard column counts... I'll repost back with an updated int file in a day or so...
    Dave
    Always forward thinking... Lost my mind!

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

    Default Re: Flexible Return Authorization (RMA) Support Thread

    Quote Originally Posted by davewest View Post
    I've just installed on a ZC 1.5.4 site I'm building, did not do any fixing... no problems. Works running return tests..

    however, I can see after reading the int_ file where you could be getting issues if the configuation table is no longer a standard format... 'Column count doesn't match value count'. Not to hard to recode the int file so to cover the non-standard column counts... I'll repost back with an updated int file in a day or so...
    Most likely the OP installed a Numinix module which adds a column to the configuration table. Since the installer for this module shortcuts explicitly naming the columns, it will spit out the column count error when run..
    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. #124
    Join Date
    Jun 2006
    Posts
    298
    Plugin Contributions
    0

    Default Re: Flexible Return Authorization (RMA) Support Thread

    Quote Originally Posted by DivaVocals View Post
    Most likely the OP installed a Numinix module which adds a column to the configuration table. Since the installer for this module shortcuts explicitly naming the columns, it will spit out the column count error when run..
    Yep, I have a Numinix mod installed (FEC).

    Thanks @davewest! Really, really appreciate your help!!!

  5. #125
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

    Default Re: Flexible Return Authorization (RMA) Support Thread

    Quote Originally Posted by abcisme View Post
    Yep, I have a Numinix mod installed (FEC).
    I figured... I use the old FEC modified so I don't have that problem.

    So... I didn't spend allot of time testing, hit ZC 1.5.3 to 1.5.4 only. I would run a un-install first, this one works, but doesn't address the added columns, but the installer checks for them.
    Code:
    SET @t4:=0; 
    SELECT @t4:= configuration_group_id FROM configuration_group WHERE configuration_group_title = 'Return Authorization' LIMIT 1;  
    DELETE FROM configuration WHERE configuration_group_id = @t4 AND @t4 != 0; 
    DELETE FROM configuration_group WHERE configuration_group_id = @t4 AND @t4 != 0; 
    DELETE FROM admin_pages WHERE page_key='configReturnAuth';
    To use, replace the /ADMIN/includes/init_includes/init_ra_config.php with this new one. Add the deleted /ADMIN/includes/auto_loader/config.ra.php. login to your admin. The installer only runs after a log on and if RMA version 1.2 is not already installed. Why the installer! it's the only way to check for errors, fix what it can or tell you it can't... Running a plan SQL wont fix things.

    If your database is totally messed up, more then one return group, you may have to use phpmyadmin to delete them..
    Attached Files Attached Files
    Dave
    Always forward thinking... Lost my mind!

  6. #126
    Join Date
    Jun 2006
    Posts
    298
    Plugin Contributions
    0

    Default Re: Flexible Return Authorization (RMA) Support Thread

    Quote Originally Posted by davewest View Post
    I figured... I use the old FEC modified so I don't have that problem.

    So... I didn't spend allot of time testing, hit ZC 1.5.3 to 1.5.4 only. I would run a un-install first, this one works, but doesn't address the added columns, but the installer checks for them.
    Code:
    SET @t4:=0; 
    SELECT @t4:= configuration_group_id FROM configuration_group WHERE configuration_group_title = 'Return Authorization' LIMIT 1;  
    DELETE FROM configuration WHERE configuration_group_id = @t4 AND @t4 != 0; 
    DELETE FROM configuration_group WHERE configuration_group_id = @t4 AND @t4 != 0; 
    DELETE FROM admin_pages WHERE page_key='configReturnAuth';
    To use, replace the /ADMIN/includes/init_includes/init_ra_config.php with this new one. Add the deleted /ADMIN/includes/auto_loader/config.ra.php. login to your admin. The installer only runs after a log on and if RMA version 1.2 is not already installed. Why the installer! it's the only way to check for errors, fix what it can or tell you it can't... Running a plan SQL wont fix things.

    If your database is totally messed up, more then one return group, you may have to use phpmyadmin to delete them..
    Thanks a million! It worked! :)

  7. #127
    Join Date
    Jun 2006
    Posts
    298
    Plugin Contributions
    0

    Default Re: Flexible Return Authorization (RMA) Support Thread

    Having a heck of a time getting the RMA info to show up in the admin edit orders page. I'm using super orders. I've tried inserting the RMA code every which way I could, but can't get the info to show up correctly. Can anyone help me merge the RMA code into the orders.php page for Super Orders 4.0.5?

  8. #128
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,681
    Plugin Contributions
    123

    Default Re: Flexible Return Authorization (RMA) Support Thread

    Quote Originally Posted by DivaVocals View Post
    Since the installer for this module shortcuts explicitly naming the columns, it will spit out the column count error when run..
    I added the explicit column naming to version 3. This is the only change in that version.
    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.

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

    Default Re: Flexible Return Authorization (RMA) Support Thread

    I also noticed that this module didn't verify that the logged in customer actually placed the order for which an RMA was requested. I fixed this bug in update 4.
    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.

  10. #130
    Join Date
    Jul 2009
    Posts
    495
    Plugin Contributions
    0

    Default Re: Flexible Return Authorization (RMA) Support Thread

    hey guys, using 1.5.5a and latest version of flex return auth,
    all seems to be working fine except on the checkout_success page.
    it doesn't seem to be loading the language for the plugin.
    instead of "Returns"
    iv got "TEXT_ACCOUNT_INFO_RETURNS_TEXT_LINK_HEADER"
    and button link 2 etc.....

    HELP PLS
    i may not know how yet, but i soon will....i hope :)

 

 
Page 13 of 17 FirstFirst ... 31112131415 ... LastLast

Similar Threads

  1. v154 Flexible Footer Menu Multilingual [Support Thread]
    By rbarbour in forum All Other Contributions/Addons
    Replies: 128
    Last Post: 6 Sep 2023, 10:30 PM
  2. Return Authorization Module (RMA)
    By voltage in forum All Other Contributions/Addons
    Replies: 648
    Last Post: 3 Jun 2015, 09:37 PM
  3. Return Merchandise Authorization (RMA) Module Follow-up
    By killertofu in forum Managing Customers and Orders
    Replies: 1
    Last Post: 11 Aug 2008, 11:13 PM
  4. Return Authorization Module (RMA)
    By dscott1966 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 11 Nov 2006, 08:04 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