

majestique
Members-
Content count
36 -
Joined
-
Last visited
Profile Information
-
Real Name
Pete
-
Offical Google Checkout module for osCommerce Support Thread
majestique replied to Silverado05's topic in Other
Is it possible to use Google Checkout API w/o sending people to Google & w/o showing Googlecheckout icon? -
I'm having this exact same error message, does anyone have the fix for this? It worked before, but after server restore, it stopped working. Curl is installed as phpinfo() stated.
-
receiving this error here too...
-
[Contribution] Attributes Sorter & Copier v5.0
majestique replied to Ajeh's topic in General Add-Ons Support
I'm getting this error too :( I'm receiving this error: 1136 - Column count doesn't match value count at row 1 insert into products_attributes values ('', '29', '3', '15', '', '', '') [TEP STOP] This is what I have in Categories PHP on the inser command: tep_db_query("insert into " . TABLE_PRODUCTS . " (products_quantity, products_model, products_image, products_image_med, products_image_lrg, products_image_sm_1, products_image_xl_1, products_image_sm_2, products_image_xl_2, products_image_sm_3, products_image_xl_3, products_image_sm_4, products_image_xl_4, products_image_sm_5, products_image_xl_5, products_image_sm_6, products_image_xl_6, products_retail_price, products_price, products_date_added, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id) values ('" . tep_db_input($product['products_quantity']) . "', '" . tep_db_input($product['products_model']) . "', '" . tep_db_input($product['products_image']) . "', '" . tep_db_input($product['products_image_med']) . "', '" . tep_db_input($product['products_image_lrg']) . "', '" . tep_db_input($product['products_image_sm_1']) . "', '" . tep_db_input($product['products_image_xl_1']) . "', '" . tep_db_input($product['products_image_sm_2']) . "', '" . tep_db_input($product['products_image_xl_2']) . "', '" . tep_db_input($product['products_image_sm_3']) . "', '" . tep_db_input($product['products_image_xl_3']) . "', '" . tep_db_input($product['products_image_sm_4']) . "', '" . tep_db_input($product['products_image_xl_4']) . "', '" . tep_db_input($product['products_image_sm_5']) . "', '" . tep_db_input($product['products_image_xl_5']) . "', '" . tep_db_input($product['products_image_sm_6']) . "', '" . tep_db_input($product['products_image_xl_6']) . "', '" . tep_db_input($product['products_retail_price']) . "', '" . tep_db_input($product['products_price']) . "', now(), '" . tep_db_input($product['products_date_available']) . "', '" . tep_db_input($product['products_weight']) . "', '0', '" . (int)$product['products_tax_class_id'] . "', '" . (int)$product['manufacturers_id'] . "')"); and this is what i have in products table.. products_id products_quantity products_model products_image products_image_med products_image_lrg products_image_sm_1 products_image_xl_1 products_image_sm_2 products_image_xl_2 products_image_sm_3 products_image_xl_3 products_image_sm_4 products_image_xl_4 products_image_sm_5 products_image_xl_5 products_image_sm_6 products_image_xl_6 products_price products_retail_price products_date_added products_last_modified products_date_available products_weight products_status products_tax_class_id manufacturers_id products_ordered products_length products_width products_height products_ready_to_ship it appears to me these 2 are vastly different... but why... the error only occurred after i added the weight mod to attributes? -
I'm receiving this error: 1136 - Column count doesn't match value count at row 1 insert into products_attributes values ('', '29', '3', '15', '', '', '') [TEP STOP] This is what I have in Categories PHP on the inser command: tep_db_query("insert into " . TABLE_PRODUCTS . " (products_quantity, products_model, products_image, products_image_med, products_image_lrg, products_image_sm_1, products_image_xl_1, products_image_sm_2, products_image_xl_2, products_image_sm_3, products_image_xl_3, products_image_sm_4, products_image_xl_4, products_image_sm_5, products_image_xl_5, products_image_sm_6, products_image_xl_6, products_retail_price, products_price, products_date_added, products_date_available, products_weight, products_status, products_tax_class_id, manufacturers_id) values ('" . tep_db_input($product['products_quantity']) . "', '" . tep_db_input($product['products_model']) . "', '" . tep_db_input($product['products_image']) . "', '" . tep_db_input($product['products_image_med']) . "', '" . tep_db_input($product['products_image_lrg']) . "', '" . tep_db_input($product['products_image_sm_1']) . "', '" . tep_db_input($product['products_image_xl_1']) . "', '" . tep_db_input($product['products_image_sm_2']) . "', '" . tep_db_input($product['products_image_xl_2']) . "', '" . tep_db_input($product['products_image_sm_3']) . "', '" . tep_db_input($product['products_image_xl_3']) . "', '" . tep_db_input($product['products_image_sm_4']) . "', '" . tep_db_input($product['products_image_xl_4']) . "', '" . tep_db_input($product['products_image_sm_5']) . "', '" . tep_db_input($product['products_image_xl_5']) . "', '" . tep_db_input($product['products_image_sm_6']) . "', '" . tep_db_input($product['products_image_xl_6']) . "', '" . tep_db_input($product['products_retail_price']) . "', '" . tep_db_input($product['products_price']) . "', now(), '" . tep_db_input($product['products_date_available']) . "', '" . tep_db_input($product['products_weight']) . "', '0', '" . (int)$product['products_tax_class_id'] . "', '" . (int)$product['manufacturers_id'] . "')"); and this is what i have in products table.. products_id products_quantity products_model products_image products_image_med products_image_lrg products_image_sm_1 products_image_xl_1 products_image_sm_2 products_image_xl_2 products_image_sm_3 products_image_xl_3 products_image_sm_4 products_image_xl_4 products_image_sm_5 products_image_xl_5 products_image_sm_6 products_image_xl_6 products_price products_retail_price products_date_added products_last_modified products_date_available products_weight products_status products_tax_class_id manufacturers_id products_ordered products_length products_width products_height products_ready_to_ship it appears to me these 2 are vastly different... but why... the error only occurred after i added the weight mod to attributes?
-
oops.. it's in admin configuration under ezier new fields :)
-
My ezier new fields doesn't display decimals for some reason... does anyone know why? Right now, it shows like this: List Price: $12 Our Price: $7 You Save: $4 (33%) The item price is actually $7.99 but it's only showing $7.. also the $4 should be $4.01... can anyone tell me how to display decimals for all prices? Thanks!
-
(BTS) Where's the file that changes products view in a category?
majestique posted a topic in General Add-Ons Support
Right now, I have somethign like this: http://oscdemo.templatemonster.com/index.php?cPath=1_21 But I want to find out the file that changes this listing format to this: http://osc.template-help.com/9260/index.php?cPath=32 basically instead of products listing as rows, it is listed in its own box BTS system doesn't appear to use product_listing.php... strange? -
[Contribution] Basic Template Structure v1.0 - For MS2
majestique replied to Brenden's topic in General Add-Ons Support
oh thanks lol -
[Contribution] Basic Template Structure v1.0 - For MS2
majestique replied to Brenden's topic in General Add-Ons Support
there seems to be nothing basic about this template system... i'm trying to figure out where the hell everything is.. and it's such a FRICKIN HEADACHE!... does anyone have documentation anywhere? arghh so frustrated... i bought an oscommerce template.. and trying to make it work w/ the bts system... needless to say.. it's utterly difficult for me to do... i'm gonna go have a smoke -
how to convert normal OSC template to BTS/STS template?
majestique posted a topic in General Add-Ons Support
Is there a tutorial somewhere that shows how to convert a normal OSC template to a BTS/STS template? If anyone knows a tutorial somewhere.. that would be fantastic! I have several standard OSC templates I want to convert to a BTS/STS template... thanks!! -
how did you guys get First Class shipping option to appear? I'm wondering why I can't checkout w/ First Class as an option, eventhough I have it enabled?
-
Fancier Invoice & Packingslip v1.0
majestique replied to PopTheTop's topic in General Add-Ons Support
Can you add somewhere for the money order instructions if money order is used? That would be great if you can! Thanks! -
Fancier Invoice & Packingslip v1.0
majestique replied to PopTheTop's topic in General Add-Ons Support
nevermind.. print backgrounds did the trick.. saw this solution before but i couldn't find it now.. spending all day adding contribs giving me headache :) -
Fancier Invoice & Packingslip v1.0
majestique replied to PopTheTop's topic in General Add-Ons Support
I installed this contrib fine, but the problem is.. when I print out the packing slip/invoice.. only the corners of the graphics get printed.. my boxs are all broken up.. does anyone know how to fix this? Thanks!