Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

paulchen2005

Pioneers
  • Posts

    154
  • Joined

  • Last visited

Everything posted by paulchen2005

  1. Hi, is there anybody here who can help with this contrib ? my question is: what must i do to change the display in checkout process "shipping (3.9 ?) plus 10 ? overweight item(s) freight:" to shipping (3.90 ?) plus 10.00 ? overweight item(s) freight: also 3.90 and 10.00 !!! thank you
  2. please, that is very important for me, can someone help me ? thanks
  3. Hi, i use PWA 1.1.1 from Ingo and i have no problems... pwa 1.1.1 works perfect
  4. Hi, i think i found a bug ? if i buy only one article with individual shipping cost 10 euro is the shipping price in checkout_shipping.php = 10 euro, that is ok, but if i buy one article with individual shipping cost 10 euro and one article w/o individual shipping must it show 10 euro and add the price from weight from the other article but it show the 10 euro + the price from weight from both article i think that is wrong ??? is it a bug ?
  5. Hi, one question please, what must i do to change the display in checkout process shipping (3.9 ?) plus 10 ? overweight item(s) freight: to shipping (3.90 ?) plus 10 ? overweight item(s) freight: also 3.90 !!! thank you
  6. Hi, i have change in admin "Indiv Ship Outside Home Increase" from 3 to 1 and now it is ok !!!
  7. Hi, i have it, i have write define('TABLE_SHIPPING_METHODS', 'shipping_methods'); in admin/includes/database_tables.php but now i have a new problem: my special price is 10 euro but if i buy one article in checkout will show 30 euro for special price... what can i do ? Thanks
  8. ok, i have install your last version, but now i have an error: 1146 - Table 'dbxxxxxxx.TABLE_SHIPPING_METHODS' doesn't exist select methods_id, methods_name from TABLE_SHIPPING_METHODS [TEP STOP] but i write in admin/includes/database_tables.php define('TABLE_PRODUCTS_SHIPPING', 'products_shipping'); what can i do ??? what is TABLE_SHIPPING_METHODS ??? thanks for help me and sorry for my bad english... :)
  9. Hi, thank you for help me, i download the file now, must i begin to install from ******************************* NEW INSTALLS ******************************* is that your code ?
  10. Hi, i install this contrib and i have one problem... if i have some articles without indiv.shipping price is the shipping price 5 euro, if i have one article with indiv.shipping price (10 euro) and some articles without indiv.shipping price (5 euro) is the shipping price 10 euro it must show 15 euro for all articles but the price from the article without indiv.shipping will not considered what can i do ?
  11. Hi, i think it is better you resize the picture... it ist better for disk space because you need less
  12. Hi, i have it !!! it works perfect !!! i add under $products_subimage1_name = $products_subimage1->filename; this code: $products_subimage1_name = tep_output_generated_category_path_fs($prod_path_id) . $products_subimage1_name; now will the subimage save in new folder and display !!! thank you very much !!! :D
  13. hi, that is not the way, the line was already in the database, with 64 varchar... has someone the solution for me ?
  14. hi, i have a new idea, for Categories and Products Images Folder Tree V 1.2 i must run these two queries ALTER TABLE categories CHANGE categories_image categories_image VARCHAR( 120 ) DEFAULT NULL; ALTER TABLE products CHANGE products_image products_image VARCHAR( 120 ) DEFAULT NULL; must i now add this one ? ALTER TABLE products CHANGE products_subimage1 products_subimage1 VARCHAR( 120 ) DEFAULT NULL; is that the missing detail to see the pictures ? i hope someone can help me...
  15. Hi, please help me, more pics save now in correct ordner (images/games/picture1.jpg) i save the pictures with follow code: // BOF: More Pics 6 // copy subimage1 only if modified $products_subimage1 = new upload('products_subimage1'); // images categories $prod_path = $HTTP_GET_VARS['cPath']; $lchar = strrpos($prod_path, '_'); if ($lchar + 1 == 1) { $lachar = 0; } else { $lachar = $lchar + 1; } $prod_path_id = substr($prod_path, $lachar); $prod_folder = tep_output_generated_category_path_fs($prod_path_id); $products_subimage1->set_destination(DIR_FS_CATALOG_IMAGES . $prod_folder); // eof images categories if ($products_subimage1->parse() && $products_subimage1->save()) { $products_subimage1_name = $products_subimage1->filename; } else { $products_subimage1_name = (isset($HTTP_POST_VARS['products_previous_subimage1']) ? $HTTP_POST_VARS['products_previous_subimage1'] : ''); } but the admin men?, product_info.php and popup_image.php search the picture in the wrong ordner (images/picture1.jpg) which code must i change now that the admin men?, product_info.php and popup_image.php read the pic from images/games/picture1.jpg with this code i save the first picture (bevore i install more pics) // copy image only if modified $products_image = new upload('products_image'); // images categories $prod_path = $HTTP_GET_VARS['cPath']; $lchar = strrpos($prod_path, '_'); if ($lchar + 1 == 1) { $lachar = 0; } else { $lachar = $lchar + 1; } $prod_path_id = substr($prod_path, $lachar); $prod_folder = tep_output_generated_category_path_fs($prod_path_id); $products_image->set_destination(DIR_FS_CATALOG_IMAGES . $prod_folder); // eof images categories if ($products_image->parse() && $products_image->save()) { $products_image_name = $products_image->filename; $products_image_name2 = $prod_folder . $products_image->filename; } else { //$products_image_name = (isset($HTTP_POST_VARS['products_previous_image']) ? $HTTP_POST_VARS['products_previous_image'] : ''); $products_image_name2 = $HTTP_POST_VARS['products_previous_image']; } this picture was correct in admin men?, product_info.php and popup_image.php i have no idea, please help me, I despaired thank you very much
  16. hi, to late to edit... i have change the code $products_image = new upload('products_image'); $products_image->set_destination(DIR_FS_CATALOG_IMAGES); if ($products_image->parse() && $products_image->save()) { $products_image_name = $products_image->filename; } else { $products_image_name = (isset($HTTP_POST_VARS['products_previous_image']) ? $HTTP_POST_VARS['products_previous_image'] : ''); } in this code: $products_subimage1 = new upload('products_subimage1'); // images categories $prod_path = $HTTP_GET_VARS['cPath']; $lchar = strrpos($prod_path, '_'); if ($lchar + 1 == 1) { $lachar = 0; } else { $lachar = $lchar + 1; } $prod_path_id = substr($prod_path, $lachar); $prod_folder = tep_output_generated_category_path_fs($prod_path_id); $products_subimage1->set_destination(DIR_FS_CATALOG_IMAGES . $prod_folder); // eof images categories if ($products_subimage1->parse() && $products_subimage1->save()) { $products_subimage1_name = $products_subimage1->filename; } else { $products_subimage1_name = (isset($HTTP_POST_VARS['products_previous_subimage1']) ? $HTTP_POST_VARS['products_previous_subimage1'] : ''); } now the pics will be save in same ordner because the image will not be display in admin men? and not in product_info.php ??? can someone help me to find the code that i must change to display the pic in admin and in product_info.php ? thank you very much Paul
  17. Hi i have test it but no effekt... sorry, that do not work the subimage from more pics will save in image/ not in same ordner how the first image... what can i change now ? thank you very much
  18. thank you very much :D :D :D i will test it this evening !!! thank you, Paul
  19. Hi AlanR works your contrib together with more pics 6 v1.2 ? i have install more pics but all images save more pics in images/ !!! i want to save the additional pics from more pics in a new ordner thank you very much Paul
  20. Hi, my english ist not good... i use more pics 6 v1.2 bevore i install morepice i install categories images folder treeV1.2 and my pice want to save in a new ordner but more pics save the pice in ordner /images ... what can i do that more pice save the pics in new ordner ? i hope you can understand and help me, thank you very much Paul
×
×
  • Create New...