You can check the includes/configure.php to make sure.
Printable View
Just a short 'thanks" to yellow 1912. This is a great mod and does exactly what is expected. I was impressed today by all of your support.:clap:
define('DB_PREFIX', 'zen_'); // prefix for database table names -- preferred to be left empty
i think you're right there is a prefix. What do i do now to fix things?
Usually the module should be able to catch the prefix, for some reason it fails to do so. Try this to see if it helps:
Go to admin/includes/classes/module_manager/sqlpatch_class.php
Find
Replace byPHP Code:
if (!defined('DB_PREFIX')) define('DB_PREFIX','');
PHP Code:
if (!defined('DB_PREFIX')) define('DB_PREFIX','zen_');
I was looking through the thread and already did that earlier this morning. No luck... any clues?
actually i have admin/includes/classes/sqlpatch_class.php , no module manager directory, but there is a module_manager.php in the same dir., any significance?
And I assume this is ssu 3.6.1?
I have my shop installed on public_html/shop/
If i move from the subfolder to the root folder how i must set configure.php?
define('DIR_WS_ADMIN', '/shop/admin/');
define('DIR_WS_CATALOG', '/shop/');
define('DIR_WS_HTTPS_ADMIN', '/shop/admin/');
define('DIR_WS_HTTPS_CATALOG', '/shop/');
define('DIR_FS_SQL_CACHE', '/home2/basicins/public_html/shop/cache');
Best regards!
define('DIR_WS_ADMIN', '/admin/');
define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_ADMIN', '/admin/');
define('DIR_WS_HTTPS_CATALOG', '/');
define('DIR_FS_SQL_CACHE', '/home2/basicins/public_html/cache');
Remember you will also have to change in admin/includes/configure.php
Yellow1912,
I have done this and seems to have cured my previous problems of not bringing up the product page on certain products.
I have just tested the checkout process up to the point of going through to enter card details and then aborted this halfway through payment. This on my live site would take me back to step 2 of checkout. on my test server it goes back to a blank page and the URL looks or seems to wrong:
"http://localhost/test_domain/checkout_payment/payment_error/protx_form/error/|lt;|h3%20class=%22ErrorInfo%22|gt;|Your%20card%20could%20not%20be%20authorised! %20Please%20try%20again%20or%20|lt;|a%20href=%22index.php?main_page=contact_us%2 2|gt;|contact%20us|lt;|/a|gt;|%20for%20further%20assistance.|lt;|/h3|gt;||lt;|p%20class=%22ExtraErrorInfo%22|gt;|(2013%20:%20The%20Transaction%20w as%20cancelled%20by%20the%20customer.)|lt;|/p|gt;|"
"https://live_domain/index.php?main_page=checkout_payment&payment_error=protx_form&error=|lt%3B|h3+cl ######%3D%22ErrorInfo%22|gt%3B|Your+card+could+not+be+authorised!+Please+try+again+ or+|lt%3B|a+href%3D%22index.php%3Fmain_page%3Dcontact_us%22|gt%3B|contact+us|lt% 3B|%2Fa|gt%3B|+for+further+assistance.|lt%3B|%2Fh3|gt%3B||lt%3B|p+class%3D%22Ext raErrorInfo%22|gt%3B|(2013+%3A+The+Transaction+was+cancelled+by+the+customer.)|l t%3B|%2Fp|gt%3B|"
In the two examples The difference seems to be that cartain & and = are changed to / can this be resolved with one of the settings?
thanks