Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

bluefish001

Archived
  • Posts

    18
  • Joined

  • Last visited

Profile Information

  • Real Name
    james

bluefish001's Achievements

  1. I have been using the mod for over 8 months now. It has been working ok ( a few issues ) but over all it is doin g the job. About 2 months ago the current auctions part of the mod stopped working.... I think it is an issue with ebay. Can anyone else confirm the problem? :'(
  2. Solved my problem.... It was of course my falult... I replaced the wrong bit of code. Please ignore my last post, Best Regards,
  3. I am having the same problem as the user several messages back... after installing the mod I am unable to add a product title. after investigating the code it would appear the the field for the product name is M.I.A. in the Admin/catagory.php file? I tried to re insert the code below, but I get errors: PHP Parse error: parse error, unexpected T_ELSEIF in /usr/local/apache2/htdocs/catalog/admin/categories.php on line 877, referer: https://192.168.1.6/catalog/admin/categorie...ted_box=catalog <?php for ($i=0, $n=sizeof($languages); $i<$n; $i++) { ?> <tr> <td class="main"><?php echo TEXT_PRODUCTS_NAME; ?></td> <td class="main"><?php echo tep_image(DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']) . ' ' . tep_draw_input_field('products_name[' . $languages[$i]['id'] . ']', (isset($products_name[$languages[$i]['id']]) ? $products_name[$languages[$i]['id']] : tep_get_products_name($pInfo->products_id, $languages[$i]['id']))); ?></td> </tr> So either I missed somthing when I added/altered the code for this mod or a privous mod altered the code in a way the devloper of this mod did not anticipate. This is the code before I tried to make the edit above... ps the code works fine save for the product name issue in the admin: <?php for ($i=0, $n=sizeof($languages); $i<$n; $i++) { ?> <tr> <td class="main" valign="top"><?php if ($i == 0) echo TEXT_PRODUCTS_DESCRIPTION; ?></td> <td><table border="0" cellspacing="0" cellpadding="0"> <tr> <td class="main" valign="top"><?php echo tep_image(DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']); ?> </td> <td class="main"><?php echo tep_draw_textarea_field('products_description[' . $languages[$i]['id'] . ']', 'soft', '70', '15', (isset($products_description[$languages[$i]['id']]) ? $products_description[$languages[$i]['id']] : tep_get_products_description($pInfo->products_id, $languages[$i]['id']))); ?></td> </tr> </table></td> </tr> <tr> <td colspan="2" class="main"><hr><?php echo TEXT_PRODUCT_METTA_INFO; ?></td> </tr> <?php } for ($i=0, $n=sizeof($languages); $i<$n; $i++) { ?> <tr> <td colspan="2"><?php echo tep_draw_separator('pixel_trans.gif', '1', '10'); ?></td> </tr> <tr> <td class="main" valign="top"><?php if ($i == 0) echo TEXT_PRODUCTS_PAGE_TITLE; ?></td> <td><table border="0" cellspacing="0" cellpadding="0"> <tr> <td class="main" valign="top"><?php echo tep_image(DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']); ?> </td> <td class="main"><?php echo tep_draw_textarea_field('products_head_title_tag[' . $languages[$i]['id'] . ']', 'soft', '70', '5', (isset($products_head_title_tag[$languages[$i]['id']]) ? $products_head_title_tag[$languages[$i]['id']] : tep_get_products_head_title_tag($pInfo->products_id, $languages[$i]['id']))); ?></td> </tr> </table></td> </tr> <?php } for ($i=0, $n=sizeof($languages); $i<$n; $i++) { ?> <tr> <td colspan="2"><?php echo tep_draw_separator('pixel_trans.gif', '1', '10'); ?></td> </tr> <tr> <td class="main" valign="top"><?php if ($i == 0) echo TEXT_PRODUCTS_HEADER_DESCRIPTION; ?></td> <td><table border="0" cellspacing="0" cellpadding="0"> <tr> <td class="main" valign="top"><?php echo tep_image(DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']); ?> </td> <td class="main"><?php echo tep_draw_textarea_field('products_head_desc_tag[' . $languages[$i]['id'] . ']', 'soft', '70', '5', (isset($products_head_desc_tag[$languages[$i]['id']]) ? $products_head_desc_tag[$languages[$i]['id']] : tep_get_products_head_desc_tag($pInfo->products_id, $languages[$i]['id']))); ?></td> </tr> </table></td> </tr> <?php } for ($i=0, $n=sizeof($languages); $i<$n; $i++) { ?> <tr> <td colspan="2"><?php echo tep_draw_separator('pixel_trans.gif', '1', '10'); ?></td> </tr> <tr> <td class="main" valign="top"><?php if ($i == 0) echo TEXT_PRODUCTS_KEYWORDS; ?></td> <td><table border="0" cellspacing="0" cellpadding="0"> <tr> <td class="main" valign="top"><?php echo tep_image(DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']); ?> </td> <td class="main"><?php echo tep_draw_textarea_field('products_head_keywords_tag[' . $languages[$i]['id'] . ']', 'soft', '70', '5', (isset($products_head_keywords_tag[$languages[$i]['id']]) ? $products_head_keywords_tag[$languages[$i]['id']] : tep_get_products_head_keywords_tag($pInfo->products_id, $languages[$i]['id']))); ?></td> </tr> </table></td> </tr> <?php } ?> <tr> <td colspan="2"><?php echo tep_draw_separator('pixel_trans.gif', '1', '10'); ?></td> </tr> <tr> <td colspan="2" class="main"><hr></td> </tr> <!-- OSC Milestone end --> <tr bgcolor="#ebebff"> <td class="main"><?php echo TEXT_PRODUCTS_TAX_CLASS; ?></td> <td class="main"><?php echo tep_draw_separator('pixel_trans.gif', '24', '15') . ' ' . tep_draw_pull_down_menu('products_tax_class_id', $tax_class_array, $pInfo->products_tax_class_id, 'onchange="updateGross()"'); ?></td> </tr> <tr bgcolor="#ebebff"> <td class="main"><?php echo TEXT_PRODUCTS_PRICE_NET; ?></td> <td class="main"><?php echo tep_draw_separator('pixel_trans.gif', '24', '15') . ' ' . tep_draw_input_field('products_price', $pInfo->products_price, 'onKeyUp="updateGross()"'); ?></td> </tr> Any Help or guidence would be greatly appreciated!
  4. :unsure: I have been using automated auction for around 2 months now.... and I am running into a strange situation where the auction status is not changing from active to ended... it does not appear to be happening all of the time but enough times that is is costing me sales. Any one else seeing this issue? I went in to the sql table and discovered that the auction_data table is recording zeros for some of the products_ids also there are duplicate product _ids.... what gives?
  5. OK, My problem is also the products_status field being marked completed. Here is a prime example of the problem... My browser was taking too long to load the page so I hit the refresh button and bang you guessed it the action is marked completed but the cookie was not updated with the transaction .... Which apparently got flamed earlier in this thread. Has anyone created a fix to move the "status completed" to the transaction completed paged? At this point, unfortunately this mod is not usable in a production environment... My target audience is not computer literate enough to understand and avoid the problem, if I make the checkout process even the least bit complicated I lose sales. More over there is no facility to immediately telling if the user has attempted to log-in and has failed.... Which means that I cannot reliably intervene and reset the status so they can try again... maybe if the mod were to double validate the transaction aka. match a invoice to the auction? Would love a patch to get the checkout running reliably. This version seems so close, and meets my immedate requirements. I do have one wish item... please check the html generator and confirm that it is generating functional code for the IE browser on the Macintosh. I would be happy to test this for you if you do not have access to a Macintosh system... all should note that the code generated currently is not compatible with MAC IE and results in a blank page being displayed in your auction when view in this browser. I believe this is an active x issue? I love the concept of this mod.. many of the suggestions would be really helpful... shame there is no way of adding the ability to turbo list from within the store, but I would settle and be VERY happy if the auction_out.php would work in a bullet proof way. Please don't take this as a flame... I am very much a fan and look forward to your next rev. You have inspired me to learn PHP. Can you post an ETA on the development of the next version?
  6. Did some more error checking... the issue is not a parsing problem as the data table is being updated correctly with the current auction info. The problem appears to be elsewhere.... Suggestions?
  7. I am having another problem.... Went to test a transaction to see the user experience. For some reason the auctionout.php is not finding the purchasers email address?? I enabled debug and this is what I end up with: [LINES] 8108408731[iTEMS]May-27-04[iTEMS]May-27-04 14:36:59 PDT[iTEMS]$0.99[iTEMS]Country Patriotic Kaleidoscope Quilt Block Kit[iTEMS]ian340(24)(*)[iTEMS][email protected][iTEMS][LINES] 8106908897[iTEMS]May-22-04[iTEMS]May-29-04 19:00:00 PDT[iTEMS]$13.99[iTEMS]Blue Rose KALEIDOSCOPE Quilt Blocks[iTEMS]No Bids Yet[iTEMS]?[iTEMS][ etc..... The email address it should find is [email protected] which is clearly listed.... but what I get is: We are unable to process your auction item. Please use the email address that you have registered with eBay. Since it does not appear to be a curl issue... :unsure: and it is not an ebay issue... :unsure: (as I am getting data from the site)... I am stumped. My guess is that the data from ebay is not being parse correctly but since I don't know what it should look like I don't know how to fix the problem. Anyone?
  8. Fix my IE on MAC-OS problem.. sort of... I modified the code in auction_product_info.php First I put <script language="JavaScript" type="text/JavaScript"> on to one line... this solved the problem of not being able to see the auction in the preview. Second I removed the if statement and used the type='text/html' version.... It seems to work on every browser now. I had another thought about the code that was generated, which was "how does e-bay index the page for searchs"?? So to be safe I added a static image with a dynamicly generated alt tag that pulls the title and description into it when html is generated. Is this redundent? Below is the the new html that is generated automaticly. <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td> <script language="JavaScript" type="text/JavaScript"> document.write("<object type='text/html' data='http://www.avalonbloom.com/catalog/auction_product_info.php?cPath=9999&products_id=68' width='100%' height='1450' style='overflow:visible' ></object>") </script> <p align="center"><font size="1" face="Arial, Helvetica, sans-serif">Copyright Avalon Bloom, A Company of Electric BlueFish Productions Inc. <br> ALL RIGHTS RESERVED</font> </p> <!-- Added gif with alt tag to capture product name and description for search engines --> <img src="http://www.avalonbloom.com/catalog/images/pixel_trans.gif" alt="Lewis and Clark Feathers Kaleidoscope by Moda Fabrics <br>A precut quilt block kit to make 10 quilt blocks. Each block measures 10 1/2 inches square when sewn. Each block in the set will be uniquely different due to cutting them using the stack and whack method. These beautiful blocks are rotary cut from <i><b>prewashed 100% cotton</b></i><b> </b>. The fabrics are a Feather print in light to dark Nautural on a Burgundy background from the <b> Lewis and Clark group by <i>Barbara Brackman & Terry Clothier Thompson Shoshone 1790-1820</i></b> for <b>Moda Fabrics </b>and a matching small vine print from the <b> Lewis and Clark group by <i>Barbara Brackman & Terry Clothier Thompson Snowberry 1840-1890</i></b> for <b>Moda Fabrics. </b>You can put these blocks together in a quilt in different ways. <i><b>Illustrated</b></i> <b><i>instructions</i></b> included to complete the blocks that even a novice sewer can understand as well as bonus instructions for dimensions to include these blocks in a King, Queen, Double, Twin or Baby Crib, wall hanging quilt as well as a Table Runner or Placemats."> <!-- end Gif --></td> </tr> </table>
  9. Can't view the ebay action page in MS Explore on the mac os.... netscape is fine. Is fine on the pc as well. Any thoughts? <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td> <script language="JavaScript" type="text/JavaScript"> if(navigator.appName == "Microsoft Internet Explorer") { document.write("<object type='text/x-scriptlet' data='http://www.avalonbloom.com/catalog/auction_product_info.php?cPath=9999&products_id=68' width='100%' height='1300'></object>") } else { document.write("<object type='text/html' data='http://www.avalonbloom.com/catalog/auction_product_info.php?cPath=9999&products_id=68' width='100%' height='1300'></object>") } </script> </td> </tr> </table>
  10. I am posting this link in hopes that someone will know what to do with it and build a Html intellegent mod for this great shopping cart. Best I can tell the bulk of the work is done.... just needs to be implimented into the existing Oscommerce Frame work. I am new to Php but from the feature list it would appear to capture the requirements for a basic "intellegent" news letter facility. My appologies if this is not what it appears to be. http://phpmailer.sourceforge.net/ Features Can send emails with multiple TOs, CCs, BCCs and REPLY-TOs Redundant SMTP servers Multipart/alternative emails for mail clients that do not read HTML email Support for 8bit, base64, binary, and quoted-printable encoding Uses the same methods as the very popular AspEmail active server (COM) component SMTP authentication Word wrap Address reset functions HTML email Tested on multiple SMTP servers: Sendmail, qmail, Postfix, Imail, Exchange, Mercury, Courier Works on any win32 or *nix platform Flexible debugging Custom mail headers Multiple fs, string, and binary attachments (those from database, string, etc) Embedded image support
  11. noone seems to abe addressing the issue of not being able to send html. Is this supported and I ma just not setup correctly?
  12. All, I have search the archives but have not found anything addressing the basic install question. Please Ref: PayPal_Shopping_Cart_IPN --- PayPal_Shopping_Cart_IPN_v2.2.zip Running:osCommerce 2.2-MS2 , PHP V4.3.4, MySQL 4.0.18, on apache2 My site is http://www.avalonbloom.com In case you are interested in verifing. The site has numerious mods installed. I have attempted to install PayPal_Shopping_Cart_IPN (the directions are very clear and I have double checked my work... the mySql tables are correct as well.) After I install (and I have done it twice) I get the same result when I browse to the server: http://mytestserver/catalog/index.php Parse error: parse error in /usr/local/apache2/htdocs/catalog/includes/application_top.php on line 268 Warning: main(DIR_WS_LANGUAGES/FILENAME_DEFAULT): failed to open stream: No such file or directory in /usr/local/apache2/htdocs/catalog/index.php on line 33 Fatal error: main(): Failed opening required 'DIR_WS_LANGUAGES/FILENAME_DEFAULT' (include_path='.:/usr/local/php/lib/php') in /usr/local/apache2/htdocs/catalog/index.php on line 33 I get similar when I atttempt to open Admin: Parse error: parse error in /usr/local/apache2/htdocs/catalog/admin/includes/filenames.php on line 54 Fatal error: Call to undefined function: ??require_once() in /usr/local/apache2/htdocs/catalog/admin/includes/database_tables.php on line 59 I follow the errors to the code line referenced and it would appear that in is not finding the files withthe function calls?
×
×
  • Create New...