

rvsupply
Members-
Content count
137 -
Joined
-
Last visited
Profile Information
-
Real Name
Admin
-
Gender
Not Telling
-
What payment module are you using?
-
#1146 - Table 'apache.theme_configuration' doesn't exist
rvsupply replied to Dave_N_Lara's topic in General Add-Ons Support
Did you run all the sql files included with the contribution? -
#1146 - Table 'apache.theme_configuration' doesn't exist
rvsupply replied to Dave_N_Lara's topic in General Add-Ons Support
what is the full sql query you are trying to execute? -
PayPal WPP Direct Payments & Express Checkout Support
rvsupply replied to dynamoeffects's topic in Other
When one checks out with a company name it does not get passed to Paypal, only his/her name is passed. Recently, on rare occasions when an order placed using the wpp (not express) method, does not get posted to the orders table in the database. Has anyone had this issue? -
Product Listing Enhancements, Thumbnails & Manufacturer Headings
rvsupply replied to spooks's topic in General Add-Ons Support
* DIR_FS_* = Filesystem directories (local/physical) * DIR_WS_* = Webserver directories (virtual/URL) -
Product Listing Enhancements, Thumbnails & Manufacturer Headings
rvsupply replied to spooks's topic in General Add-Ons Support
The large image is $products['large_products_image']. So you would need to call that instead of $products['products_image'] in your css code. If you need help with that just post the css/javascript code. -
Product Listing Enhancements, Thumbnails & Manufacturer Headings
rvsupply replied to spooks's topic in General Add-Ons Support
You could post your product_info.php file. -
Try removing all files and db entry (or restore your backup) then reinstalling.
-
1054 - Unknown column 'products_name' in 'field list'
rvsupply replied to vitamin_ebox's topic in General Add-Ons Support
It looks like you did not follow the installation instructions correctly? In admin/categories.php Did you replace: $sql_data_array = array('categories_name' => tep_db_prepare_input($categories_name_array[$language_id])); With: /*** Begin Header Tags SEO ***/ $sql_data_array = array('categories_name' => tep_db_prepare_input($categories_name_array[$language_id]), 'categories_htc_title_tag' => (tep_not_null($categories_htc_title_array[$language_id]) ? tep_db_prepare_input($categories_htc_title_array[$language_id]) : tep_db_prepare_input($categories_name_array[$language_id])), 'categories_htc_desc_tag' => (tep_not_null($categories_htc_desc_array[$language_id]) ? tep_db_prepare_input($categories_htc_desc_array[$language_id]) : tep_db_prepare_input($categories_name_array[$language_id])), 'categories_htc_keywords_tag' => (tep_not_null($categories_htc_keywords_array[$language_id]) ? tep_db_prepare_input($categories_htc_keywords_array[$language_id]) : tep_db_prepare_input($categories_name_array[$language_id])), 'categories_htc_description' => tep_db_prepare_input($categories_htc_description_array[$language_id])); /*** End Header Tags SEO ***/ or with: /*** Begin Header Tags SEO ***/ $sql_data_array = array('products_name' => tep_db_prepare_input($HTTP_POST_VARS['products_name'][$language_id]), 'products_description' => tep_db_prepare_input($HTTP_POST_VARS['products_description'][$language_id]), 'products_url' => tep_db_prepare_input($HTTP_POST_VARS['products_url'][$language_id]), 'products_head_title_tag' => ((tep_not_null($HTTP_POST_VARS['products_head_title_tag'][$language_id])) ? tep_db_prepare_input($HTTP_POST_VARS['products_head_title_tag'][$language_id]) : tep_db_prepare_input($HTTP_POST_VARS['products_name'][$language_id])), 'products_head_desc_tag' => ((tep_not_null($HTTP_POST_VARS['products_head_desc_tag'][$language_id])) ? tep_db_prepare_input($HTTP_POST_VARS['products_head_desc_tag'][$language_id]) : tep_db_prepare_input($HTTP_POST_VARS['products_name'][$language_id])), 'products_head_keywords_tag' => ((tep_not_null($HTTP_POST_VARS['products_head_keywords_tag'][$language_id])) ? tep_db_prepare_input($HTTP_POST_VARS['products_head_keywords_tag'][$language_id]) : tep_db_prepare_input($HTTP_POST_VARS['products_name'][$language_id]))); /*** End Header Tags SEO ***/ -
it shows numbers. All the numbers are under miss.
-
My stats show no script hits. I have supertracker module installed; could this be the problem?
-
PayPal WPP Direct Payments & Express Checkout Support
rvsupply replied to dynamoeffects's topic in Other
ItemTotal is off -
PayPal WPP Direct Payments & Express Checkout Support
rvsupply replied to dynamoeffects's topic in Other
I have got this error dump in reference to the above problem. After it went through it was not itemized in paypal. -
PayPal WPP Direct Payments & Express Checkout Support
rvsupply replied to dynamoeffects's topic in Other
I found my problem. Changed <?php if (!$ec_enabled || isset($_GET['ec_cancel']) || (!tep_session_is_registered('paypal_ec_payer_id') && !tep_session_is_registered('paypal_ec_payer_info'))) { ?> to <?php if (!$ec_enabled || isset($HTTP_GET_VARS['ec_cancel']) || (!tep_session_is_registered('paypal_ec_payer_id') && !tep_session_is_registered('paypal_ec_payer_info'))) { ?> in checkout_shipping.php and checkout_payment.php -
PayPal WPP Direct Payments & Express Checkout Support
rvsupply replied to dynamoeffects's topic in Other
I still get the same results. I am using the SEO URL contribution.