Re: COWOA (for ZC v1.5.x)
Hi all,
I combed all 36 pages and did not see a vanilla problem like I am experiencing; it just not seem to work.
I have already uninstalled and reinstalled 3 times, and even tried the Classic Green template to no avail: https://antiagingpillowcase.com/cart/
No matter what I do, when I proceed to checkout it asks to log in or create an account. All COWOA settings in Admin are set to 'True', and as far as I know everything uploaded/overwrote and updated as intended.
Thanks in advance!
Re: COWOA (for ZC v1.5.x)
Just started seeing this in error logs (a few times this month): PHP Fatal error: Cannot redeclare class order in /home/.../public_html/includes/classes/order.php on line 1111
This is from the order.php packaged with the latest COWOA 2.4. Line 1111 is the last line of the file: }
Re: COWOA (for ZC v1.5.x)
Quote:
Originally Posted by
jetx
Just started seeing this in error logs (a few times this month): PHP Fatal error: Cannot redeclare class order in /home/.../public_html/includes/classes/order.php on line 1111
This is from the order.php packaged with the latest COWOA 2.4. Line 1111 is the last line of the file: }
Not seeing this in any site I've installed COWOA, and it's not been reported here.. leads me to believe that another module that edits the same file is in conflict..
Re: COWOA (for ZC v1.5.x)
Yes I could find no reference to this anywhere. Thanks for that confirmation. Now to try to trigger it.
Re: COWOA (for ZC v1.5.x)
Quote:
Originally Posted by
jetx
Just started seeing this in error logs (a few times this month): PHP Fatal error: Cannot redeclare class order in /home/.../public_html/includes/classes/order.php on line 1111
This is from the order.php packaged with the latest COWOA 2.4. Line 1111 is the last line of the file: }
A lot of times this happens when you make some changes to a page's header_php.php file and rename the original file to something like header_php_original.php (to have a backup) ... both of the files will load and you'll get the duplicate class error.
Re: COWOA (for ZC v1.5.x)
I've gone through this entire post and haven't seen the answer to my question, so if someone could help me, I'd be very grateful. :-)
I installed the COWOA (1.5.0, I think) a few months ago, and after some hiccups, got it working properly. But recently a few different book customers have contacted me, saying that the system is telling them their session has expired. This is happening less than 5 minutes after they've finalized their order. How can I reset the timeout feature so that their session won't expire until AFTER they've downloaded their products?
Oddly enough, it isn't happening every time, just occasionally. Any ideas why?
Thanks!!
Re: COWOA (for ZC v1.5.x)
Quote:
Originally Posted by
lat9
A lot of times this happens when you make some changes to a page's header_php.php file and rename the original file to something like header_php_original.php (to have a backup) ... both of the files will load and you'll get the duplicate class error.
That was an inspirational idea, unfortunately I have no such (backup) files in any directories.
Re: COWOA (for ZC v1.5.x)
Quote:
Originally Posted by
jetx
That was an inspirational idea, unfortunately I have no such (backup) files in any directories.
Still sounds like you have another module which modifies the same files as COWOA which is the root cause of the issue..
Re: COWOA (for ZC v1.5.x)
ZenCart 1.5.1
I'm having issues with the sql patch. I've tried it from the tools menu, and in phpmyadmin.
INSERT INTO admin_pages( page_key, language_key, main_page, page_params, menu_key, display_on_menu, sort_order )
VALUES (
'configCOWOA', 'BOX_CONFIGURATION_COWOA', 'FILENAME_CONFIGURATION', CONCAT( 'gID=', @t4 ) , 'configuration', 'Y', @t4
);
MySQL said:
#1048 - Column 'page_params' cannot be null
Any ideas how to fix?
Thank you
Re: COWOA (for ZC v1.5.x)
Quote:
Originally Posted by
rhrobert
ZenCart 1.5.1
I'm having issues with the sql patch. I've tried it from the tools menu, and in phpmyadmin.
INSERT INTO admin_pages( page_key, language_key, main_page, page_params, menu_key, display_on_menu, sort_order )
VALUES (
'configCOWOA', 'BOX_CONFIGURATION_COWOA', 'FILENAME_CONFIGURATION', CONCAT( 'gID=', @t4 ) , 'configuration', 'Y', @t4
);
MySQL said:
#1048 - Column 'page_params' cannot be null
Any ideas how to fix?
Thank you
Run the FULL script.. you are attempting to run the script in pieces and the variable it uses is defined earlier in the script.. Run the script in FULL not in sections..