Re: Cloned shipping module problem
I don't really know how to tell you this. If the class cannot be redeclared, this is because the class has already been initiated once already. I suggest you find out where the line
class storepickup
exists within your store code, and go from there.
Using the Developer's Toolkit in the admin, under tools, paste "class storepickup", without the "s, into the last textbox, and select Catalog from the dropdown, and tehn click search. Please paste here EXACTLY what the return fines.
Absolute
Re: Cloned shipping module problem
/home/pow10934/public_html/includes/modules/shipping/storepickup.php
Line #12 : class storepickup extends base {
I did the same for "class cod" and got
/home/pow10934/public_html/includes/modules/payment/cod.php
Line #22 : class cod {
/home/pow10934/public_html/includes/modules/shipping/cod.php
Line #12 : class cod extends base {
Re: Cloned shipping module problem
Well, there is your problem. You have the cod payment module installed, which has a class called cod. Change the name of your shipping file to scod.php, and then change the 3 cod references within that file to scod.
That will fix your problem.
Absolute