Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Kopite

Pioneers
  • Posts

    134
  • Joined

  • Last visited

Profile Information

  • Real Name
    A P

Recent Profile Visitors

8,919 profile views

Kopite's Achievements

  1. Hi, Bringing up an issue I've raised a few times but haven't fixed. Exclusions do not work for me. Everything else seems to be great. But exclusions have no effect? Any ideas? Thanks
  2. Hi, All seems to be working good except EXCLUSIONS. None seem to be working. I created a discounted shipping code for 1 product. I excluded all other manufacturers, categories and products. But I can apply the code to all products. Thanks.
  3. Hi, All seems to be working good except EXCLUSIONS. None seem to be working. I created a discounted shipping code for 1 product. I excluded all other manufacturers, categories and products. But I can apply the code to all products. Thanks.
  4. Hmm, ok. Already noticed 'per item' is not passing on my discount coupon contribution. Any word on when per item might be working fully? It's great. If not, anyway to get the same information to display ie. X Number of items with a Total Value of Y. Then all in a seperate list when you click the dropdown in Paypal. Thanks.
  5. I was reading the install guide and it recommends not to use 'per item' for transaction type...instead use 'aggregate'. Is it safe though for me to use 'per item'? It's exactly what I want, and have been after. Thanks
  6. To be honest, I find all this a very dissapointing part of oscommerce that needs to be improved dramatically. It seems that Paypal IPN is the way to go here, so I will get right on that. I don't like the sound of a customer not getting a immediate confirmation email either. Either way, will get to work on Paypal IPN.
  7. Guys, can I also ask about the customer returning to my site after payment on Paypal. I see there is a few contibutions to remind payer to return etc. HOWEVER, in Paypal, there is an automatic return to the page of your choice - can I use this to go back to checkout_success.php? Will the order then be logged in oscommerce? Thanks
  8. I had to go with this one: http://www.oscommerce.com/community/contri...l/search,paypal I actually went for this one first: http://www.oscommerce.com/community/contri...l/search,paypal But the latter failed to work with my discount coupon module. It said that unformatted data was passed to Paypal. The top one works fine, though I don't like it as much as it is not as easily customisable. However, can anyone tell me if this is the Paypal page that I must have? Or can I change it? I find it clumsy and unnappealing - but that might just be me. Thanks.
  9. Hi, Thanks for the info - much obliged. I've been doing some searching and came across these two contribution to fix my descrition problem - can you/anyone recommend which one to go for? http://www.oscommerce.com/community/contri...l/search,paypal OR http://www.oscommerce.com/community/contri...l/search,paypal Also, is there any way to change this: So, it just display the information instead of having to click the big blue arrow. Like this: Ie, I want my paypal checkout page to start on this. Also, the link to pay without a paypal account is quite small. It used to be a lot bigger if I remember. Can I edit this page somehow - I know how to do colours, logo etc from my Paypal profile but no layout .
  10. Hey, I just signed up for a Paypal Business account (UK). I wanted to get verified so I setup my bank account straight away. However, when I get to the page where I input my bank details, the bank account holders' name is hardcoded to my Business name - I need that to be My Name. Can I change it? (I've emailed Paypal but would like your opinion). ............ Also, I was doing a test order for my shop, when I get through to the Paypal page, the item is listed as the name of my shop. Is this normal? I would like the item listed, not just the name of my shop. ........... If I don't become verified, I can still transfer funds to my bank account but with limits? ........... If I changed my business name on Paypal to my personal name, is there any way to display my business name to the customer and not just my name? Any other advice appreciated. Thanks
  11. I would also like to know how to display the second level of categories without the user having to click on the first. Cheers.
  12. My create_order.php looks exactly like this (to the best of my knowledge I haven't edited it at all): <?php/* $Id: create_order.php,v 1 2003/08/17 23:21:34 frankl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2002 osCommerce Released under the GNU General Public License*/ require('includes/application_top.php');// #### Get Available Customers $query = tep_db_query("select customers_id, customers_firstname, customers_lastname from " . TABLE_CUSTOMERS . " ORDER BY customers_lastname"); $result = $query; if (tep_db_num_rows($result) > 0) { // Query Successful $SelectCustomerBox = "<select name='Customer'><option value=''>" . TEXT_SELECT_CUST . "</option>\n"; while($db_Row = tep_db_fetch_array($result)) { $SelectCustomerBox .= "<option value='" . $db_Row["customers_id"] . "'"; if(IsSet($HTTP_GET_VARS['Customer']) and $db_Row["customers_id"]==$HTTP_GET_VARS['Customer']) $SelectCustomerBox .= " SELECTED "; //$SelectCustomerBox .= ">" . $db_Row["customers_lastname"] . " , " . $db_Row["customers_firstname"] . " - " . $db_Row["customers_id"] . "</option>\n"; $SelectCustomerBox .= ">" . $db_Row["customers_lastname"] . " , " . $db_Row["customers_firstname"] . "</option>\n"; } $SelectCustomerBox .= "</select>\n"; } $query = tep_db_query("select code, value from " . TABLE_CURRENCIES . " ORDER BY code"); $result = $query; if (tep_db_num_rows($result) > 0) { // Query Successful $SelectCurrencyBox = "<select name='Currency'><option value='' SELECTED>" . TEXT_SELECT_CURRENCY . "</option>\n"; while($db_Row = tep_db_fetch_array($result)) { $SelectCurrencyBox .= "<option value='" . $db_Row["code"] . "," . $db_Row["value"] . "'"; $SelectCurrencyBox .= ">" . $db_Row["code"] . "</option>\n"; } $SelectCurrencyBox .= "</select>\n"; } if(IsSet($HTTP_GET_VARS['Customer'])) { $account_query = tep_db_query("select * from " . TABLE_CUSTOMERS . " where customers_id = '" . $HTTP_GET_VARS['Customer'] . "'"); $account = tep_db_fetch_array($account_query); $customer = $account['customers_id']; $address_query = tep_db_query("select * from " . TABLE_ADDRESS_BOOK . " where customers_id = '" . $HTTP_GET_VARS['Customer'] . "'"); $address = tep_db_fetch_array($address_query); //$customer = $account['customers_id']; } elseif (IsSet($HTTP_GET_VARS['Customer_nr'])) { $account_query = tep_db_query("select * from " . TABLE_CUSTOMERS . " where customers_id = '" . $HTTP_GET_VARS['Customer_nr'] . "'"); $account = tep_db_fetch_array($account_query); $customer = $account['customers_id']; $address_query = tep_db_query("select * from " . TABLE_ADDRESS_BOOK . " where customers_id = '" . $HTTP_GET_VARS['Customer_nr'] . "'"); $address = tep_db_fetch_array($address_query); //$customer = $account['customers_id']; } require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_CREATE_ORDER_PROCESS);// #### Generate Page ?> <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"> <html <?php echo HTML_PARAMS; ?>> <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"><?php// BOF: WebMakers.com Changed: Header Tag Controller v1.0// Replaced by header_tags.phpif ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) { require(DIR_WS_INCLUDES . 'header_tags.php');} else {?> <title><?php echo HEADING_TITLE ?></title> <link rel="stylesheet" type="text/css" href="includes/stylesheet.css"> <?php require('includes/form_check.js.php'); ?> </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="2" cellpadding="2"> <tr> <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2" class="columnLeft"><!-- left_navigation //--><?php require(DIR_WS_INCLUDES . 'column_left.php'); ?><!-- left_navigation_eof //--> </table></td><!-- body_text //--><td valign="top"> <table border='0' bgcolor='#7c6bce' width='100%'> <tr> <td class=main><font color='#ffffff'><b><?php echo TEXT_STEP_1 ?></b></td> </tr> </table> <table border='0' cellpadding='7'><tr><td class="main" valign="top"><?php print "<form action='$PHP_SELF' method='GET'>\n"; print "<table border='0'>\n"; print "<tr>\n"; print "<td><br>$SelectCustomerBox</td>\n"; print "<td valign='bottom'><input type='submit' value=\"" . BUTTON_SUBMIT . "\"></td>\n"; print "</tr>\n"; print "</table>\n"; print "</form>\n";?><?php print "<form action='$PHP_SELF' method='GET'>\n"; print "<table border='0'>\n"; print "<tr>\n"; print "<td><font class=main><b><br>" . TEXT_OR_BY . "</b></font><br><br><input type=text name='Customer_nr'></td>\n"; print "<td valign='bottom'><input type='submit' value=\"" . BUTTON_SUBMIT . "\"></td>\n"; print "</tr>\n"; print "</table>\n"; print "</form>\n";?> <tr> <td width="100%" valign="top"><?php echo tep_draw_form('create_order', FILENAME_CREATE_ORDER_PROCESS, '', 'post', '', '') . tep_draw_hidden_field('customers_id', $account->customers_id); ?><table border="0" width="100%" cellspacing="0" cellpadding="0"> </tr> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td class="pageHeading"><?php echo HEADING_CREATE; ?></td> </tr> </table></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td><?php//onSubmit="return check_form();" require(DIR_WS_MODULES . 'create_order_details.php');?> </td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="main"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT, '', 'SSL') . '">' . tep_image_button('button_back.gif', IMAGE_BUTTON_BACK) . '</a>'; ?></td> <td class="main" align="right"><?php echo tep_image_submit('button_confirm.gif', IMAGE_BUTTON_CONFIRM); ?></td> </tr> </table></td> </tr> </table></form></td><!-- body_text_eof //--> </tr></table><!-- body_eof //--><!-- footer //--><?php require(DIR_WS_INCLUDES . 'footer.php'); ?><!-- footer_eof //--><br></body></html><?phprequire(DIR_WS_INCLUDES . 'application_bottom.php');}?>
  13. Hi, I'm getting this error when I create an order in the admin panel: Parse error: parse error, unexpected T_REQUIRE in /home/content/W/O/R/WORLDOFMOTION/html/admin/create_order.php on line 1 Everything else seems tobe wrking fine.
×
×
  • Create New...