Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

cherven

Archived
  • Posts

    56
  • Joined

  • Last visited

About cherven

  • Birthday 03/06/1986

Profile Information

  • Real Name
    Sean Cherven
  • Location
    New York
  • Website

cherven's Achievements

  1. Ask who? paypay? i already did, but i havent gotten a responce yet...
  2. The title says it all, is there a payment module for PayPay.com (not paypal)? PayPay.com is very simular to paypal, but its a different company... Thanks in advanced!
  3. For some reason when a customer makes a purchase using google checkout IPN, the IP Address is not recorded in the database, although when placing an order, the website displays the ip address. Anyone know of to fix this issue? this is a big security risk for me, because i always check the IPs of customers for fraud possibilities before i process the order.
  4. I got UPS XML with Dimensional Weight Support installed, but i was wondering if someone could point me in the right direction for modifying the fedex module to work with the Dimensional Weight also?
  5. I just figured it out... For some reason i had to installed the "Split Products" mod for it to work...
  6. I am having a problem with the dimentional support.... I added a product that is 75 x 25 x 12, and weighs 47 lbs... and i made it a ready to ship product... but when i goto checkout, the shipping cost is only based off of the 47lbs, not the dimensions... I also tried adding 2 of that same product, and it is marked as ready to ship, but the shipping cost only says "(1 pkg, 94 lbs total) "... it should be 2 packages, right? i tried setting the dimentional support in the UPS XML module to "Ready to ship Only" & "With product dimensions", neather of them work. I dont get any errror or anything, it just dont calculate the weight/packages properly. Any idea what is wrong?
  7. Opps....... that was for a experment that i was trying to do, it is not supposed to be there, it is supposed to be require('includes/application_top.php'); i will update the mod ASAP. again sorry about this. Sean.
  8. Can someone help me with this one, too? and for free? yes i need two (2) of thease to be configured, they are: "default specials" and "featured products" i tried to do it myself but i can't figure it out. :( can someone please be nice enough to help me out and do this for me for free? let me know... thanks.
  9. Can someone do this for me too? hopefully free. let me know. Thanks.
  10. Take a look at the catalog.diff file where it changes the select statements. Notice that it replaces all instances of select from ... TABLE_PRODUCTS . ' p, ' ... where ... with select from ... TABLE_AFFILIATE_PRODUCTS . " a, " . TABLE_PRODUCTS . " p, " ... where a.affiliate_id = '" . AFFILIATE_ID . "' and a.products_id = p.products_id and ... So all you need to do is affect a similar change in your code above. If you want me to do it for you, send me a private message and we'll discuss payment terms. (Yes, I'm an evil guy; I'm in this for the money...) One problem...... I DON'T HAVE ANY MONEY. :cry: i only have about $45 in the Bank..... Thats it, i'm not kidding. so i realy can't afford to pay for this to be done, if i could afford it i would pay for it. well if you can't do it for free, can anyone else?
  11. It sounds like there is a problem with the script adding the affiliate to the database. can you goto your database and look and see if the affiliate is in the database? if not it must be a problem with the affiliate script in the catalog side, if it IS in there it must be a problum with the Affiliate script in the admin side. look in to it and let me know if it is in there. I got to go for the night, i'll talk to you all tomorrow. Thanks for all the help. Good Night everyone.
  12. here is something else that i need to be configured: Can someone help me configure the contribution "default specials" to work with "affiliate_branding"? Here is the code that needs to be configured: <!-- default_specials //--> <tr> </tr> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <?php $info_box_contents = array(); $info_box_contents[] = array('align' => 'left', 'text' => sprintf(TABLE_HEADING_DEFAULT_SPECIALS, strftime('%B'))); new contentBoxHeading($info_box_contents); $new = tep_db_query("select p.products_id, pd.products_name, p.products_price, p.products_tax_class_id, p.products_image, s.specials_new_products_price from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_SPECIALS . " s where p.products_status = '1' and s.products_id = p.products_id and p.products_id = pd.products_id and pd.language_id = '" . $languages_id . "' and s.status = '1' order by s.specials_date_added DESC limit " . MAX_DISPLAY_SPECIAL_PRODUCTS); $info_box_contents = array(); $row = 0; $col = 0; while ($default_specials = tep_db_fetch_array($new)) { $default_specials['products_name'] = tep_get_products_name($default_specials['products_id']); $info_box_contents[$row][$col] = array('align' => 'center', 'params' => 'class="smallText" width="33%" valign="top"', 'text' => '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $default_specials['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $default_specials['products_image'], $default_specials['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $default_specials['products_id']) . '">' . $default_specials['products_name'] . '</a><br><s>' . $currencies->display_price($default_specials['products_price'], tep_get_tax_rate($default_specials['products_tax_class_id'])) . '</s><br><span class="productSpecialPrice">' . $currencies->display_price($default_specials['specials_new_products_price'], tep_get_tax_rate($default_specials['products_tax_class_id'])).'</span>' ); $col ++; if ($col > 2) { $col = 0; $row ++; } } new contentBox($info_box_contents); ?></table> <!-- default_specials_eof //--> Can someone configure this code for me also and post it back here? Thanks.
  13. Can you be a little more specific on whats happening? explane it more.
  14. Can someone help me configure the contribution "Featured Products" to work with "affiliate_branding"? Here is the code that needs to be configured: if ( (!isset($featured_products_category_id)) || ($featured_products_category_id == '0') ) { $info_box_contents[] = array('align' => 'left', 'text' => '<a href="' . tep_href_link(FILENAME_FEATURED_PRODUCTS) . '">' . TABLE_HEADING_FEATURED_PRODUCTS . '</a>'); $featured_products_query = tep_db_query("select p.products_id, p.products_image, p.products_tax_class_id, s.status as specstat, s.specials_new_products_price, p.products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id left join " . TABLE_FEATURED . " f on p.products_id = f.products_id where p.products_status = '1' and f.status = '1' order by rand() DESC limit " . MAX_DISPLAY_FEATURED_PRODUCTS); } else { $info_box_contents[] = array('align' => 'left', 'text' => sprintf(TABLE_HEADING_FEATURED_PRODUCTS_CATEGORY, $cat_name)); $featured_products_query = tep_db_query("select distinct p.products_id, p.products_image, p.products_tax_class_id, s.status as specstat, s.specials_new_products_price, p.products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_CATEGORIES . " c left join " . TABLE_FEATURED . " f on p.products_id = f.products_id where p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and c.parent_id = '" . $featured_products_category_id . "' and p.products_status = '1' and f.status = '1' order by rand() DESC limit " . MAX_DISPLAY_FEATURED_PRODUCTS); } Can someone configure that code for me and post it back here? Thanks.
  15. this same thing happend to me, here is what to do: in catalog/affiliate_summary.php FIND: <td align="right" colspan="4"><?php echo '<a href="' . DIR_WS_ADMIN . FILENAME_AFFILIATE_PRODUCTS . '">' . tep_image_button('button_affiliate_products.gif', IMAGE_PRODUCTS) . '</a> <a href="' . tep_href_link(FILENAME_AFFILIATE_BANNERS, '') . '">' . tep_image_button('button_affiliate_banners.gif', IMAGE_BANNERS) . '</a> <a href="' . tep_href_link(FILENAME_AFFILIATE_CLICKS, '') . '">' . tep_image_button('button_affiliate_clickthroughs.gif', IMAGE_CLICKTHROUGHS) . '</a> <a href="' . tep_href_link(FILENAME_AFFILIATE_SALES, '','SSL') . '">' . tep_image_button('button_affiliate_sales.gif', IMAGE_SALES) . '</a>'; ?></td> and change it to read: <td align="right" colspan="4"><?php echo '<a href="admin/affiliate_products.php"><IMG SRC="' . DIR_WS_LANGUAGES . $language . '/images/buttons/button_affiliate_products.gif" ALT=' . IMAGE_BANNERS . ' BORDER=0></a> <a href="' . tep_href_link(FILENAME_AFFILIATE_BANNERS, '') . '">' . tep_image_button('button_affiliate_banners.gif', IMAGE_BANNERS) . '</a> <a href="' . tep_href_link(FILENAME_AFFILIATE_CLICKS, '') . '">' . tep_image_button('button_affiliate_clickthroughs.gif', IMAGE_CLICKTHROUGHS) . '</a> <a href="' . tep_href_link(FILENAME_AFFILIATE_SALES, '','SSL') . '">' . tep_image_button('button_affiliate_sales.gif', IMAGE_SALES) . '</a>'; ?></td> and that should only be one (1) Line. the Board is not long enough to fit it all on one line. :lol: :shock: I know it is not a verry good way of arranging the code, but i have the loaded 4 version, and i had to change around the code, because it was not showing the button "Products" at all. i spent over 2 hours trying to figure it out and this code was the best i could do let me know if it works. Thanks.
×
×
  • Create New...