Zen Cart Logo
Forums / All Other Contributions/Addons / Return Authorization Module (RMA)

Return Authorization Module (RMA)

Views: 109,992

Results 641 to 644 of 644
3 Jun 2015, 11:32 AM
#641
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,081
Plugin Contributions:
56

Return Authorization Module (RMA)

Just a small change to your installation SQL, so you're not deleting elements in configuration_group_id = 0 on the initial install:

SET @t4=0;
SELECT (@t4:=configuration_group_id) as t4
FROM configuration_group
WHERE configuration_group_title= 'Return Authorization';
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 configuration WHERE configuration_key = 'DEFINE_RETURNS_STATUS';
.
.
.
3 Jun 2015, 11:37 AM
#642
marcopolo avatar

marcopolo

Totally Zenned

Join Date:
May 2008
Location:
United States
Posts:
516
Plugin Contributions:
2

Re: Return Authorization Module (RMA)

Thanks but I ran the install script already do you think it deleted something it was not suppose to? I have backup of course so I can restore if I have to.

3 Jun 2015, 8:37 PM
#644
marcopolo avatar

marcopolo

Totally Zenned

Join Date:
May 2008
Location:
United States
Posts:
516
Plugin Contributions:
2

Re: Return Authorization Module (RMA)

ok thanks