Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

balynce

Archived
  • Posts

    38
  • Joined

  • Last visited

Everything posted by balynce

  1. If the weight was 0, my cart completely bypasses the first shipping screen... when quantity discount products go to shipping screen, the price is $0...if there is a regular product in the cart as well it shows the correct price for everything, and on the checkout final page the price is correct either way.
  2. I installed this mod ... a version after the "fix for the database" but mine does not write the cvv to the database as far as I can tell. When I go into admin the CVV is blank. Was this not implimented in the newer version? I'm having a hard time finding the differences between the two..
  3. I am still trying to figure out why shipping is not being charged for these products used with quantity discount unless regular products without quantity discount are in the cart...does anyone know if it have anything to do with the code in shopping_cart.php class for "global $languages_id;" and parts that go along with it since i have "register globals=off/false" ???
  4. Is anyone having problems with 0 shipping charges on their quantity price break products only? I'm not sure if it was something in this module, a fix for it, or implimentation of another module..but there are no shipping charges only for the price break products...the regular products it works fine... thanks!
  5. I having the same problem..I tried to put that module on false and tried a different shipping method to true ..one that was working on another store, and shipping no longer shows up at all for the customer...
  6. Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING in /hsphere/local/home/balynce/store.balynce.com/admin/easypopulate.php on line 1715
  7. It looks like that now except i get this error... Parse error: parse error, unexpected T_VARIABLE in /hsphere/local/home/balynce/store.balynce.com/admin/easypopulate.php on line 1715
  8. I am stuck at this part too, as well as my page won't upload or download. there are a few sections with the image listed... not sure if those are right either.. but for this section mine is giving me an error and I am not sure how to fix it. Parse error: parse error, unexpected ',' in /hsphere/local/home/balynce/store.balynce.com/admin/easypopulate.php on line 1715 $query = "INSERT INTO ".TABLE_PRODUCTS." ( products_image, products_model, products_price, products_status, products_last_modified, products_date_added, products_date_available, products_tax_class_id, products_weight, products_quantity, manufacturers_id) VALUES ( $v_products_image . '", "' . $v_products_subimage1 . '", "' . $v_products_subimage2 . '", "' . $v_products_subimage3 . '", "' . $v_products_subimage4 . '", "' . $v_products_subimage5 . '", "' . $v_products_subimage6 . '", "' $query .=" '$v_products_model', '$v_products_price', '$v_db_status', CURRENT_TIMESTAMP, $v_date_added, $v_date_avail, '$v_tax_class_id', '$v_products_weight', '$v_products_quantity', '$v_manufacturer_id') ";
  9. I would like to know if I could get TINYMCE to work with this? I automatically have a box I can paste stuff into and sort of edit text with the editor..but it doesn't have the image bar and link bar and all that stuff like in define content... does anyone know how to make category descriptions work with a full on tinymce editor? Thanks :)
  10. So just to confirm... admin/includes/configure.php should have this... define('DIR_FS_DOCUMENT_ROOT', '$DOCUMENT_ROOT'); // where the pages are located on the server what about regular catalog/ configure? Thanks :)
  11. I am having the same problem. Same version...on a UNIX machine.. the only thing I modified was subimage1 - 6... I haven't tried to upload yet..but I can't download from any of the links, it just refreshes the page. I even turned off attributes (code below) even though I use QT PRO because someone on here said attributes might be the problem. I have almost 200 products in my store. // change this to false, if do not want to download product attributes global $products_with_attributes; $products_with_attributes = false; // change this to true, if you use QTYpro and want to set attributes stock with EP. global $products_attributes_stock; $products_attributes_stock = false;
  12. This is the pdf_catalogue_info.php page with only the download link and adobe pdf link instead of the non-working categories boxes. <?php /******************************************************************************/ /* PDF Catalogs v.2.0.1 for osCommerce v.2.2 MS2 */ /* */ /* by Infobroker ([email protected]), April 2006 */ /* by Antonios THROUVALAS ([email protected]), April 2004 */ /* by Mitch O`Brian (mitchobrian.de), juli2004 2004 */ /* by Nicolas Hilly ([email protected]), August 2004 */ /* by Christophe Buchi ([email protected]), September 2004 */ /* by Ryan Kononoff ([email protected]), October 2004 */ /* */ /* Based on PDF Catalogs v.1.4 by [email protected] */ /* */ /* Uses FPDF (http://www.fpdf.org), Version 1.52, by Olivier PLATHEY */ /* modified by Infobroker */ /* */ /* Credit goes also to: */ /* - Yamasoft (http://www.yamasoft.com/php-gif.zip) for their GIF class, */ /* - Jerome FENAL ([email protected]) for introducing GIF Support */ /* in the FPDF Class, */ /* - The osC forums members (www.oscommerce.com/forums)! */ /* */ /* Please donate to the osCommerce Core Team! */ /* Freeware, You may use, modify and redistribute this software as you wish! */ /******************************************************************************/ require('includes/application_top.php'); require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_PDF_CATALOGUE); $breadcrumb->add(NAVBAR_TITLE, tep_href_link(FILENAME_PDF_CATALOGUE)); // Directory where the generated PDF files will be stored! // If you mofify the name of this directory, please modify accordingly the // catalog/admin/pdf_config.php file!! // Don't forget to change the permissions of this directory to 755! define('DIR_WS_PDF_CATALOGS','catalogues/'); // Filename to use as a base for the name of the generated PDF files. // If you mofify the name of this directory, please modify accordingly the // For Categories catalog // catalog/admin/pdf_config.php file!! define('PDF_FILENAME_CATEGORIES','categories'); // For catalog define('PDF_FILENAME','catalog'); ?> <html <?php echo HTML_PARAMS; ?>> <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> <title><?php echo TITLE; ?> : <?php echo HEADING_TITLE; ?></title> <base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <link rel="stylesheet" type="text/css" href="stylesheet.css"> </head> <body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0"> <!-- header //--> <?php require(DIR_WS_INCLUDES . 'header.php'); ?> <!-- header_eof //--> <!-- body //--> <table border="0" width="100%" cellspacing="3" cellpadding="3"> <tr> <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2"> <!-- left_navigation //--> <?php require(DIR_WS_INCLUDES . 'column_left.php'); ?> <!-- left_navigation_eof //--> </table></td> <!-- body_text //--> <td width="100%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> </table></td> </tr> <tr> <td class="pageHeading"><?php echo HEADING_TITLE; ?></td> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <!--Gesamtkatalog begin--> <!-- Show the Intro File <tr> <td class="main"><br><?//php include(DIR_WS_LANGUAGES . $language . '/' . FILENAME_PDF_DEFINE_INTRO); ?><br></td> </tr> --> <!-- Show the Description in the pdf_catalogue_info.php --> <tr> <td class="main" align="left"><?php echo TEXT_PDF_DESCRIPTION; ?></td> </tr> <tr> <td> </td> </tr> <tr> <td class="main" align="center"><?php $file = DIR_WS_PDF_CATALOGS . PDF_FILENAME . "_" . $languages_id . ".pdf"; $sizecatalog = filesize($file)/pow(2,20); $formatted = sprintf("%0.2f MB", $sizecatalog); echo '<img width="16" height="16" src="images/adobe_pdf.gif" align="middle"> '; echo '<a href="' . $file . '" target="_blank"><b>' . TEXT_PDF_FILE .'</b></a> (' . $formatted . ')'; ?> <p><br> </td> </tr> <!--Gesamtkatalog end--> <tr> <td class="main" align="center"><?php echo TEXT_PDF_DOWNLOAD; ?></td> </tr> <tr> <td class="main" align="center"><?php echo '<a href="http://www.adobe.com/products/acrobat/readstep2.html" target="_blank">'; echo tep_image(DIR_WS_IMAGES . 'getacro.gif'); ?></a></td> </tr> <tr> <td class="main" align="center"><?php echo TEXT_PDF_END; ?></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> </table></td> <!-- body_text_eof //--> <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2"> <!-- right_navigation //--> <?php require(DIR_WS_INCLUDES . 'column_right.php'); ?> <!-- right_navigation_eof //--> </table></td> </tr> </table> <!-- body_eof //--> <!-- footer //--> <?php require(DIR_WS_INCLUDES . 'footer.php'); ?> <!-- footer_eof //--> <br> </body> </html> <?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>
  13. I've been waiting for someone to hopefully come up with the fix for the categories issue but it can't be too hard to just remove the imformation on the page so it only shows the link for the full catalog download. I'm going to have to do that if there's no fix for the problem.
  14. And here is the code for pdf_catalogue_info.php without the large pointless oscommerce continue button at the bottom. <?php /******************************************************************************/ /* PDF Catalogs v.2.0.1 for osCommerce v.2.2 MS2 */ /* */ /* by Infobroker ([email protected]), April 2006 */ /* by Antonios THROUVALAS ([email protected]), April 2004 */ /* by Mitch O`Brian (mitchobrian.de), juli2004 2004 */ /* by Nicolas Hilly ([email protected]), August 2004 */ /* by Christophe Buchi ([email protected]), September 2004 */ /* by Ryan Kononoff ([email protected]), October 2004 */ /* */ /* Based on PDF Catalogs v.1.4 by [email protected] */ /* */ /* Uses FPDF (http://www.fpdf.org), Version 1.52, by Olivier PLATHEY */ /* modified by Infobroker */ /* */ /* Credit goes also to: */ /* - Yamasoft (http://www.yamasoft.com/php-gif.zip) for their GIF class, */ /* - Jerome FENAL ([email protected]) for introducing GIF Support */ /* in the FPDF Class, */ /* - The osC forums members (www.oscommerce.com/forums)! */ /* */ /* Please donate to the osCommerce Core Team! */ /* Freeware, You may use, modify and redistribute this software as you wish! */ /******************************************************************************/ require('includes/application_top.php'); require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_PDF_CATALOGUE); $breadcrumb->add(NAvb script:history.back()" TARGET="_self">'.PDF_TXT_ERROR2 ."</a>".PDF_TXT_ERROR3; } //******************************************************************************** **************************************** ?> </td> </tr> <tr> <td class="main" align="center"><?php echo TEXT_PDF_DOWNLOAD; ?></td> </tr> <tr> <td class="main" align="center"><?php echo '<a href="http://www.adobe.com/products/acrobat/readstep2.html" target="_blank">'; echo tep_image(DIR_WS_IMAGES . 'getacro.gif'); ?></a></td> </tr> <tr> <td class="main" align="center"><?php echo TEXT_PDF_END; ?></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> </table></td> <!-- body_text_eof //--> <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2"> <!-- right_navigation //--> <?php require(DIR_WS_INCLUDES . 'column_right.php'); ?> <!-- right_navigation_eof //--> </table></td> </tr> </table> <!-- body_eof //--> <!-- footer //--> <?php require(DIR_WS_INCLUDES . 'footer.php'); ?> <!-- footer_eof //--> <br> </body> </html> <?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>
  15. I am having the same problem regarding the pdf not being generated on the customers side when they choose categories. :( However...Here is the pdf_catalogue_info.php page I modified... No longer at the bottom with no right info boxes. <?php /******************************************************************************/ /* PDF Catalogs v.2.0.1 for osCommerce v.2.2 MS2 */ /* */ /* by Infobroker ([email protected]), April 2006 */ /* by Antonios THROUVALAS ([email protected]), April 2004 */ /* by Mitch O`Brian (mitchobrian.de), juli2004 2004 */ /* by Nicolas Hilly ([email protected]), August 2004 */ /* by Christophe Buchi ([email protected]), September 2004 */ /* by Ryan Kononoff ([email protected]), October 2004 */ /* */ /* Based on PDF Catalogs v.1.4 by [email protected] */ /* */ /* Uses FPDF (http://www.fpdf.org), Version 1.52, by Olivier PLATHEY */ /* modified by Infobroker */ /* */ /* Credit goes also to: */ /* - Yamasoft (http://www.yamasoft.com/php-gif.zip) for their GIF class, */ /* - Jerome FENAL ([email protected]) for introducing GIF Support */ /* in the FPDF Class, */ /* - The osC forums members (www.oscommerce.com/forums)! */ /* */ /* Please donate to the osCommerce Core Team! */ /* Freeware, You may use, modify and redistribute this software as you wish! */ /******************************************************************************/ require('includes/application_top.php'); require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_PDF_CATALOGUE); $breadcrumb->add(NAvb script:history.back()" TARGET="_self">'.PDF_TXT_ERROR2 ."</a>".PDF_TXT_ERROR3; } //******************************************************************************** **************************************** ?> </td> </tr> <tr> <td class="main" align="center"><?php echo TEXT_PDF_DOWNLOAD; ?></td> </tr> <tr> <td class="main" align="center"><?php echo '<a href="http://www.adobe.com/products/acrobat/readstep2.html" target="_blank">'; echo tep_image(DIR_WS_IMAGES . 'getacro.gif'); ?></a></td> </tr> <tr> <td class="main" align="center"><?php echo TEXT_PDF_END; ?></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox"> <tr class="infoBoxContents"> <td><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td> <td align="right"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image_button('button_continue.gif', IMAGE_BUTTON_CONTINUE) . '</a>'; ?></td> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td> </tr> </table></td> </tr> </table></td> </tr> </table></td> <!-- body_text_eof //--> <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2"> <!-- right_navigation //--> <?php require(DIR_WS_INCLUDES . 'column_right.php'); ?> <!-- right_navigation_eof //--> </table></td> </tr> </table> <!-- body_eof //--> <!-- footer //--> <?php require(DIR_WS_INCLUDES . 'footer.php'); ?> <!-- footer_eof //--> <br> </body> </html> <?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>
  16. I am trying to get QT PRO (already installed) to work with Attributes Sets Plus...and I can't figure out how to merge them...specifically on product_info.php and I also believe categories.php... any insight or code would be greatly appreciated!!! Thanks!
  17. I am still trying to get this to work with QT PRO (which is already installed and working)... The install file for ASP step 6 for product_info.php shows that I need to replace this with new code: $products_options_query = tep_db_query("select pov.products_options_values_id, pov.products_options_values_name, pa.options_values_price, pa.price_prefix from " . TABLE_PRODUCTS_ATTRIBUTES . " pa, " . TABLE_PRODUCTS_OPTIONS_VALUES . " pov where pa.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pa.options_id = '" . (int)$products_options_name['products_options_id'] . "' and pa.options_values_id = pov.products_options_values_id and pov.language_id = '" . (int)$languages_id . "'"); but I have this: $products_attributes_query = tep_db_query("select count(*) as total from " . TABLE_PRODUCTS_OPTIONS . " popt, " . TABLE_PRODUCTS_ATTRIBUTES . " patrib where patrib.products_id='" . (int)$HTTP_GET_VARS['products_id'] . "' and patrib.options_id = popt.products_options_id and popt.language_id = '" . (int)$languages_id . "'"); $products_attributes = tep_db_fetch_array($products_attributes_query); if ($products_attributes['total'] > 0) { I would really like to know how to integrate the two... thanks!
  18. I have noticed that a few of you have integrated QT PRO with ASP and there are a couple parts where I can't figure out how to merge them... (The page I got stuck on so far is catalog/product_info.php) Any help would be greatly appreciated! Thanks!!!
  19. How do I know if I have LibCurl and DomXml on my site? I know I have SSL. Thanks!
  20. How do I know if I have LibCurl and DomXml on my site? I know I have SSL. Thanks!
  21. on Google's Checkout, they want this information below, but I dont know what to do. API callback URL Specify a URL for Google to notify you of new orders and changes in order state. You must provide the URL of a server running 128-bit SSLv3 or TLS. I also don't know how to "test" the sandbox...the instructions from the contrib say to test it but I have no idea how.
  22. I currently have More Pics (works great along with On The Fly) and am trying desperatly to implement the mod "Delete Remove Product Image Via Admin" http://www.oscommerce.com/community/contributions,1639 ... I got it up and it looks ok (shows all the images in edit). When I try to actually use it, eg. try to delete picture off server, it keeps it and then puts it in the original image place instead of removing it. Has anyone done this and got it removing the correct pictures and such? I don't want to give up on it because I like having the images all visible when I'm editing a product. Thanks!
  23. Just as a side note....I just got the version from before the box size july 2006 updates and it works...
  24. I've just installed this and my product_updates.php shows this: Product Price and Stock Update 1054 - Unknown column 'products_length' in 'field list' select p.products_id, p.manufacturers_id, p.products_quantity, p.products_weight, products_length, products_width, products_height, products_ready_to_ship, p.products_price, p.products_model, pd.products_name, m.manufacturers_id, m.manufacturers_name from products p, products_description pd, manufacturers m where p.products_id = pd.products_id and p.manufacturers_id = m.manufacturers_id and pd.language_id = 1 group by pd.products_name order by p.products_model ASC limit 0, 20 [TEP STOP]
×
×
  • Create New...