Hey all,
I just wanted to let everyone know that I got Ubercart installed successfully by first changing the following files and code before uploading and activating the modules. I am using Beta 4.
This relates to this thread as I was getting white screens with errors on them before. The trick is to edit these files BEFORE trying to activate the modules, as they won't be fully activated, and you'll need to remove a bunch of tables in the database to fully uninstall it and try again. I really hope this is fixed in the next Beta.
--------------------------
1: /uc_cart/uc_cart.module
--------------------------
From: (Lines 16-17)
-----
require_once('uc_cart_checkout_pane.inc');
require_once('uc_cart_workflow.inc');
To:
---
require_once(drupal_get_path('module', 'uc_cart') .'/uc_cart_checkout_pane.inc');
require_once(drupal_get_path('module', 'uc_cart') .'/uc_cart_workflow.inc');
----------------------------
2: /uc_order/uc_order.module
----------------------------
From: (Lines 16-18)
-----
require_once('uc_order_order_pane.inc');
require_once('uc_order_line_item.inc');
require_once('uc_order_workflow.inc');
To:
---
require_once(drupal_get_path('module', 'uc_order') .'/uc_order_order_pane.inc');
require_once(drupal_get_path('module', 'uc_order') .'/uc_order_line_item.inc');
require_once(drupal_get_path('module', 'uc_order') .'/uc_order_workflow.inc');
----------------------------------------
3: /payment/uc_payment/uc_payment.module
----------------------------------------
From: (Lines 16-18)
-----
require_once('uc_payment_checkout_pane.inc');
require_once('uc_payment_order_pane.inc');
require_once('uc_payment_workflow.inc');
To:
---
require_once(drupal_get_path('module', 'uc_payment') .'/uc_payment_checkout_pane.inc');
require_once(drupal_get_path('module', 'uc_payment') .'/uc_payment_order_pane.inc');
require_once(drupal_get_path('module', 'uc_payment') .'/uc_payment_workflow.inc');Lastly, this is a bit offtopic, but it's not present anywhere (and maybe this should be present somewhere): "What version would you recommend for a public site?" aka "What would be a stable release?"
Thank You!



Joined: 01/30/2008