Also, check to make sure your MySQL user id and password are valid, and that the MySQL user has permissions sufficient to allow creating a database...
David
David
AbanteCart v1.4.3 is released.

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu// Error Reporting
error_reporting(E_ALL);~E_NOTICE setting normally present.~E_NOTICE to the error_reporting statement might remedy this situation in production sites...Quote from: Garry on November 10, 2012, 12:26:40 PM
install new options for product or servis
Please install the button for the product to be switched to the product or service.
If enabled service is disabled weight, model, manufacturer
Quote from: abolabo on October 14, 2012, 07:28:32 AM
error_reporting ralated notices.
check error_reporting value of your php.ini.
I guess you have E_STRICT there. Try to set E_ALL & ~E_DEPRECATED
public function onControllerPagesCheckoutSuccess_InitData() {
$registry = Registry::getInstance();
$script_html = 'SCRIPT TAG';
if (isset($this->session->data['order_id'])) {
$order_id = $registry->get('session')->data['order_id'];
$order_info = $registry->get('model_checkout_order')->getOrder($order_id);
$webpropertyid = $this->baseObject->get('config')->get('strikehawk_ganalytics_webpropertyid');
$script_html = "Place Some html Here, for ex: <script> alert('Order Total: " . $order_info['total'] . "')</script>";
}
$this->baseObject->view->addHookVar('payment_analytics', $script_html);
return;
} public function onControllerPagesCheckoutConfirm_UpdateData() {
$registry = Registry::getInstance();
$order_id = $registry->get('session')->data['order_id'];
$order_info = $registry->get('model_checkout_order')->getOrder($order_id);
$webpropertyid = $this->baseObject->get('config')->get('strikehawk_ganalytics_webpropertyid');
$script_html = "Place Some html Here, for ex: <script> alert('Order Total: " . $order_info['total'] . "')</script>";
$this->baseObject->view->addHookVar('payment_analytics', $script_html);
return;
}$order_info = $registry->get('model_checkout_order')->getOrder($order_id);$webpropertyid = $this->baseObject->get('config')->get('strikehawk_ganalytics_webpropertyid'); $webpropertyid = $this->registry->get('config')->get('strikehawk_ganalytics_webpropertyid'); https://www.exampledomain.com/index.php?rt=account/account will show the page with only two options.https://www.bathsafetyfirst.com/index.php?rt=checkout/shipping will show all three, provided that you have a product in your basket.