Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

histcloth

Pioneers
  • Posts

    17
  • Joined

  • Last visited

Profile Information

  • Real Name
    Nick

histcloth's Achievements

  1. I am looking for someone whom I could pay to fix this module. Nick Sekela
  2. We tried that but it didn't do anything differently. Nick Sekela
  3. We are not getting the orders to show up on the OSCommerce site after they are sent to google. Google is sending us what looks like the correct order information in XML format, but the responsehandler.php file isn't processing the data or adding new orders to osCommerce. The message log on our server contains all the XML data sent from Google, so we are getting it, but it isn't being picked up by responsehandler.php 1) Every time we change the status of on order in GC, Google sends a 'order-state-change-notification' to your website, and the website runs the appropriate code to change the order's status (we can't see the result, though because of course the order wasn't set up properly in the first place). 2) When someone makes a purchase via GC, google sends the correct 'new-order-notification' message, which shows up in the message log, but none of the corresponding code in the responsehandler.php file is getting executed. Any ideas? Nick Sekela
  4. Sam: Any ideas how to have different borders on different boxes, (primarily on the center box in the index.php file, which shows the new products for that month? I would be most grateful if you could even point me in the right direction. Nick Sekela
  5. This contribution is great and has been something that I have been looking for a long time. It basically works like Adobe Illustrator's Brush tool. I was wondering if it might be possible to have different borders on different boxes, (primarily on the center box in the index.php file, which shows the new products for that month? I was also wondering if anyone knew how to put a border around the whole outside perimeter? There are some templates for sale that have a solid color band around all four sides, with the shop site nested in the center. I would like to put a border around the outside that looks like torn paper laying on a darker background. I had previously done this in an html site using the slice tool in Adobe Imageready, with the center being the editable text. Thanks a million for this great contribution. Nick Sekela
  6. Instead of WYSIWYG output, I am getting the following output when I create the E-mail, in OS Commerce. <?php /* $Id: mail.php,v 1.31 2003/06/20 00:37:51 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions [url="http://www.oscommerce.com"]http://www.oscommerce.com[/url] Copyright © 2003 osCommerce Released under the GNU General Public License */ require('includes/application_top.php'); $action = (isset($HTTP_GET_VARS['action']) ? $HTTP_GET_VARS['action'] : ''); if ( ($action == 'send_email_to_user') && isset($HTTP_POST_VARS['customers_email_address']) && !isset($HTTP_POST_VARS['back_x']) ) { switch ($HTTP_POST_VARS['customers_email_address']) { case '***': $mail_query = tep_db_query("select customers_firstname, customers_lastname, customers_email_address from " . TABLE_CUSTOMERS); $mail_sent_to = TEXT_ALL_CUSTOMERS; break; case '**D': $mail_query = tep_db_query("select customers_firstname, customers_lastname, customers_email_address from " . TABLE_CUSTOMERS . " where customers_newsletter = '1'"); $mail_sent_to = TEXT_NEWSLETTER_CUSTOMERS; break; default: $customers_email_address = tep_db_prepare_input($HTTP_POST_VARS['customers_email_address']); $mail_query = tep_db_query("select customers_firstname, customers_lastname, customers_email_address from " . TABLE_CUSTOMERS . " where customers_email_address = '" . tep_db_input($customers_email_address) . "'"); $mail_sent_to = $HTTP_POST_VARS['customers_email_address']; break; } $from = tep_db_prepare_input($HTTP_POST_VARS['from']); $subject = tep_db_prepare_input($HTTP_POST_VARS['subject']); $message = tep_db_prepare_input($HTTP_POST_VARS['message']); //Let's build a message object using the email class $mimemessage = new email(array('X-Mailer: osCommerce')); // add the message to the object $mimemessage->add_text($message); $mimemessage->build_message(); while ($mail = tep_db_fetch_array($mail_query)) { $mimemessage->send($mail['customers_firstname'] . ' ' . $mail['customers_lastname'], $mail['customers_email_address'], '', $from, $subject); } tep_redirect(tep_href_link(FILENAME_MAIL, 'mail_sent_to=' . urlencode($mail_sent_to))); } if ( ($action == 'preview') && !isset($HTTP_POST_VARS['customers_email_address']) ) { $messageStack->add(ERROR_NO_CUSTOMER_SELECTED, 'error'); } if (isset($HTTP_GET_VARS['mail_sent_to'])) { $messageStack->add(sprintf(NOTICE_EMAIL_SENT_TO, $HTTP_GET_VARS['mail_sent_to']), 'success'); }?> <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"> <html <?php echo HTML_PARAMS; ?>> <head> <script language="javascript" type="text/javascript" src="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_ADMIN; ?>tinymce/jscripts/tiny_mce/tiny_mce.js"></script> <script language="javascript" type="text/javascript"> tinyMCE.init({ mode : "textareas", theme : "advanced", plugins : "table,save,autosave,autosave,cleanup,advhr,advimage,advlink,emotions,iespel l,insertdatetime,preview,zoom,flash,searchreplace,print,contextmenu,directionalit y,inlinepopups,media,nonbreaking,visualchars,devkit,paste,noneditable,layer,fullp age,fullscreen,", theme_advanced_buttons1_add_before : "save,separator,", theme_advanced_buttons1_add : "fontselect,fontsizeselect", theme_advanced_buttons2_add : "separator,insertdate,inserttime,preview,zoom,separator,forecolor,backcolor", theme_advanced_buttons2_add_before: "cut,copy,paste,separator,search,replace,separator", theme_advanced_buttons3_add_before : "tablecontrols,separator", theme_advanced_buttons3_add : "emotions,iespell,flash,advhr,separator,print,ltr,rtl", theme_advanced_buttons4_add_before : "visualchars,nonbreaking,devkit,separator,layer,fullpage,fullscreen", table_styles : "Header 1=header1;Header 2=header2;Header 3=header3", table_cell_styles : "Header 1=header1;Header 2=header2;Header 3=header3;Table Cell=tableCel1", table_row_styles : "Header 1=header1;Header 2=header2;Header 3=header3;Table Row=tableRow1", table_cell_limit : 100, table_row_limit : 5, table_col_limit : 5, theme_advanced_toolbar_location : "top", theme_advanced_toolbar_align : "left", theme_advanced_path_location : "bottom", plugin_insertdate_dateFormat : "%Y-%m-%d", plugin_insertdate_timeFormat : "%H:%M:%S", extended_valid_elements : "a[name|href|target|title|onclick],img[class|src|border=0|alt|title|hspace|v space|width|height|align|onmouseover|onmouseout|name],hr[class|width|size|noshade ],font[face|size|color|style],span[class|align|style]", external_link_list_url : "example_data/example_link_list.js", external_image_list_url : "example_data/example_image_list.js", flash_external_list_url : "example_data/example_flash_list.js" }); </script> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> <title><?php echo TITLE; ?></title> <link rel="stylesheet" type="text/css" href="includes/stylesheet.css"> Any ideas? Nick in New Jersey
×
×
  • Create New...