Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Current Auction and the UK


tayl1684

Recommended Posts

Hi

 

Has anyone managed to get the current auction cont' working for the UK.

 

Its designed to show your ebay auctions on the web site. but configured for the us.

 

I need to have this working in the uk,

 

When I changed the addresses in the php file (to ebay.co.uk) you get a correct (BST) auction end date but a 300 day out time left.

 

When I leave the first instance of the bay address as ebay.com and change the rest to ebay.co.uk - I get a correct time left but an incorrect (PST) auction end date.

 

Here is the code:

 

<?php

/*

  $Id: current_auctions.php,v 1.22 2003/06/05 23:26:22 hpdl Exp $

 

  osCommerce, Open Source E-Commerce Solutions

  http://www.oscommerce.com

 

  Copyright © 2003 osCommerce

 

  Released under the GNU General Public License

*/

 

  require('includes/application_top.php');

 

  require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_CURRENT_AUCTIONS);

 

  $breadcrumb->add(NAVBAR_TITLE, tep_href_link(FILENAME_CURRENT_AUCTIONS));

?>

<!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; ?>">

<title><?php echo TITLE . ' - ' . 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">

          <tr>

            <td class="pageHeading"><?php echo HEADING_TITLE; ?></td>

            <td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_specials.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>

          </tr>

        </table></td>

      </tr>

      <tr>

        <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>

      </tr>

      <tr>

        <td class="main">

<?php

 

// Start the border table

echo "

        <TABLE border=\"0\" cellPadding=\"0\" cellSpacing=\"0\" width=\"100%\">

        <TR><TD bgcolor=\"" . EBAY_TBLBORDER . "\"><TABLE border=\"0\" cellPadding=\"2\" cellSpacing=\"1\" width=\"100%\">

        <TR>

        <tr bgcolor=\"" . EBAY_TBLHEADER . "\" valign=\"middle\">

        <td align=\"center\" width=\"20%\"><b><font size=\"1\" face=\"Verdana, Arial, sans-serif\" color=\"#FFFFFF\">" . AUCTION_ITEM . "</font></b></td>

        <td align=\"center\" width=\"20%\"><b><font size=\"1\" face=\"Verdana, Arial, sans-serif\" color=\"#FFFFFF\">" . AUCTION_START_DATE . "</font></b></td>

        <td align=\"center\" width=\"20%\"><b><font size=\"1\" face=\"Verdana, Arial, sans-serif\" color=\"#FFFFFF\">" . AUCTION_END_DATE . "</font></b></td>

        <td align=\"center\" width=\"20%\"><b><font size=\"1\" face=\"Verdana, Arial, sans-serif\" color=\"#FFFFFF\">" . AUCTION_TIME_LEFT . "</font></b></td>

        <td align=\"center\" width=\"20%\"><b><font size=\"1\" face=\"Verdana, Arial, sans-serif\" color=\"#FFFFFF\">" . AUCTION_CURRENT_PRICE . "</font></b></td>

        <td align=\"center\" width=\"20%\"><b><font size=\"1\" face=\"Verdana, Arial, sans-serif\" color=\"#FFFFFF\">" . AUCTION_HIGH_BIDDER . "</font></b></td>

        </TR>

";

 

 

// Build the eBay URL

$URL = "http://cgi6.ebay.com/ws/eBayISAPI.dll?MfcISAPICommand=ViewListedItems&userid=" . EBAY_USERID . "&since=" . EBAY_ENDED . "&sort=" . EBAY_SORT . "&rows=0";

 

// Set Start and End

$Start = "Click on the column headers to sort";

// $End = "</p><script SRC=\"http://include.ebay.com/aw/pics/js/stats/ss.js\"></SCRIPT><script SRC=\"http://include.ebay.com/aw/pics/js/stats/ss2.js\"></SCRIPT><p>" or "indicates that auction has ended.";

 

// Open the file

$file = fopen("$URL", "r");

 

// Read the file

if (!function_exists('file_get_contents')) {

    $r = fread($file, 80000);

}

else {

    $r = file_get_contents($URL);

}

 

// Grab the desired contents

$stuff = eregi("$Start(.*)$End", $r, $content);

 

// Get rid of unnecessary data

// Set data up to be split into lines and items

 

$content[1] = ereg_replace("</a><table border=\"1\" cellpadding=\"3\".*</td><br></tr>","",$content[1]);

$content[1] = ereg_replace("<tr bgcolor=\"#CCCCFF\">.*High Bidder \/ Status","",$content[1]);

$content[1] = ereg_replace("<tr bgcolor=\"#CCCCFF\">.*High Bidder \/ Status","",$content[1]);

$content[1] = str_replace("</table>", "", $content[1]);

$content[1] = str_replace("</th>", "", $content[1]);

$content[1] = str_replace("\r\n", "", $content[1]);

$content[1] = str_replace("\n", "", $content[1]);

$content[1] = str_replace("\r", "", $content[1]);

$content[1] = str_replace("<td align=\"center\">", "", $content[1]);

$content[1] = str_replace("<td>", "", $content[1]);

$content[1] = str_replace("<td align=\"right\">", "", $content[1]);

$content[1] = str_replace("<font color=\"\">", "", $content[1]);

$content[1] = str_replace("</font>", "", $content[1]);

$content[1] = str_replace("<tr bgcolor=\"#ffffff\">", "", $content[1]);

$content[1] = str_replace("<tr bgcolor=\"#efefef\">", "", $content[1]);

$content[1] = str_replace("<tr bgcolor=\"#efefef\">", "", $content[1]);

$content[1] = str_replace("</td>", "[iTEMS]", $content[1]);

$content[1] = str_replace("</tr>", "[LINES]\n", $content[1]);

 

 

// Line used during debug

// echo "<hr>$content[1]<br><br> <hr>";

 

 

// Close the file

fclose($file);

 

$stuff = $content[1];

 

// Build the first array for EOF

$items = explode("[LINES]",$stuff);

 

// Loop through the lines

 

$count = "0";

 

foreach ($items as $listing) {

        // Break lines into individual items

 

        list($Item,$Start,$End,$Price,$Title,$HighBidder ) = explode("[iTEMS]",$listing);

 

// Remove the (*) from the High Bidder

        $HighBidder = str_replace("(*)" , "" , $HighBidder);

 

        //Countdown to retrieve Time Left

        //Break apart End and convert the months to numbers

        $seperate = split('[- :]', $End);

 

        $seperate[0] = str_replace("Jan", "1", $seperate[0]);

        $seperate[0] = str_replace("Feb", "2", $seperate[0]);

        $seperate[0] = str_replace("Mar", "3", $seperate[0]);

        $seperate[0] = str_replace("Apr", "4", $seperate[0]);

        $seperate[0] = str_replace("May", "5", $seperate[0]);

        $seperate[0] = str_replace("Jun", "6", $seperate[0]);

        $seperate[0] = str_replace("Jul", "7", $seperate[0]);

        $seperate[0] = str_replace("Aug", "8", $seperate[0]);

        $seperate[0] = str_replace("Sep", "9", $seperate[0]);

        $seperate[0] = str_replace("Oct", "10", $seperate[0]);

        $seperate[0] = str_replace("Nov", "11", $seperate[0]);

        $seperate[0] = str_replace("Dec", "12", $seperate[0]);

 

            $month = $seperate[0];

            $day = $seperate[1];

            $year = $seperate[2];

            $hour = $seperate[3]+EBAY_TIMEZONE;

            $minute = $seperate[4];

        $second = $seperate[5];

 

        // mktime is the marked time, time() is the current time.

        $target = mktime($hour,$minute,$second,$month,$day,$year);

        $diff = $target - time();

 

        $days = ($diff - ($diff % 86400)) / 86400;

        $diff = $diff - ($days * 86400);

        $hours = ($diff - ($diff % 3600)) / 3600;

        $diff = $diff - ($hours * 3600);

        $minutes = ($diff - ($diff % 60)) / 60;

        $diff = $diff - ($minutes * 60);

        $seconds = ($diff - ($diff % 1)) / 1;

 

        // Put it into a presentable format

        $Time_Left =  $days . "d" . " " . $hours . "h" . " " . $minutes . "m";

 

        // Print Auction Ended when neccassary

        if ($seconds <= 0) {

                $TimeLeft = "Auction Ended";

                }

        else {

                $TimeLeft = $Time_Left;

                }

 

                // Print content if it exists

                if ($Start && $End && $Title && ($count < EBAY_PERPAGE)) {

 

                        $count++;

 

                        $colour = ( $colour == EBAY_TBLROW ) ? EBAY_TBLROWALT : EBAY_TBLROW;

 

                                $line = "<TR><TD bgcolor=\"$colour\">$Title</TD></TR>

                                          <TR><TD bgcolor=\"$colour\" align=\"center\">$Item</TD>

                                                <TD bgcolor=\"$colour\">$Start</TD>

                                                <TD bgcolor=\"$colour\">$End</TD>

                                                <TD bgcolor=\"$colour\">$TimeLeft</TD>

                                                <TD bgcolor=\"$colour\">$Price</TD>

                                                <TD bgcolor=\"$colour\">$HighBidder</TD></TR>\n";

 

 

                    preg_match('/item=([^"&]*)/', $line, $match);

                                        $itemnum=$match[1];

 

 

                                // Show thumbnails if enabled

                                if ($thumbs == EBAY_THUMBNAILS) {

                        echo "<tr bgcolor=\"$colour\">

                                                <td align=\"left\" colspan=\"6\">

                                                <font face=\"Arial, sans-serif\" size=\"2\">

                                                <a href=\"http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&item=$itemnum\" target=\"_blank\"><b>$Title</b></a></font></td></tr>

                                                <TR><TD bgcolor=\"$colour\" align=\"center\"><a href=\"http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&item=$itemnum\" target=\"_blank\">

                                                        <img src=\"http://thumbs.ebay.com/pict/$itemnum.jpg\"></a><br><font face=\"Arial, sans-serif\" size=\"2\">$itemnum</font></TD>

                                                <TD bgcolor=\"$colour\" align=\"center\"><font face=\"Arial, sans-serif\" size=\"2\">$Start</font></TD>

                                                <TD bgcolor=\"$colour\" align=\"center\"><font face=\"Arial, sans-serif\" size=\"2\">$End</font></TD>

                                                <TD bgcolor=\"$colour\" align=\"center\"><font face=\"Arial, sans-serif\" size=\"2\" color=\"#FF0000\">$TimeLeft</font></TD>

                                                <TD bgcolor=\"$colour\" align=\"center\"><b><font face=\"Arial, sans-serif\" size=\"2\" color=\"#339933\">$Price</font></b></TD>

                                                <TD bgcolor=\"$colour\" align=\"center\"><font face=\"Arial, sans-serif\" size=\"2\">$HighBidder</font></TD></TR>\n";

                                }

 

                                // Otherwise only show Bid Now

                                else {

                        echo "<tr bgcolor=\"$colour\">

                                                <td align=\"left\" colspan=\"6\">

                                                <font face=\"Arial, sans-serif\" size=\"2\">

                                                <a href=\"http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&item=$itemnum\" target=\"_blank\"><b>$Title</b></a></font></td></tr>

                                                <TR><TD bgcolor=\"$colour\" align=\"center\"><font face=\"Arial, sans-serif\" size=\"2\">$itemnum</font></TD>

                                                <TD bgcolor=\"$colour\" align=\"center\"><font face=\"Arial, sans-serif\" size=\"2\">$Start</font></TD>

                                                <TD bgcolor=\"$colour\" align=\"center\"><font face=\"Arial, sans-serif\" size=\"2\">$End</font></TD>

                                                <TD bgcolor=\"$colour\" align=\"center\"><font face=\"Arial, sans-serif\" size=\"2\" color=\"#FF0000\">$TimeLeft</font></TD>

                                                <TD bgcolor=\"$colour\" align=\"center\"><b><font face=\"Arial, sans-serif\" size=\"2\" color=\"#339933\">$Price</font></b></TD>

                                                <TD bgcolor=\"$colour\" align=\"center\"><font face=\"Arial, sans-serif\" size=\"2\">$HighBidder</font></TD></TR>\n";

                                }

 

 

 

                }

 

        }

 

// Wrap the border table

echo "</TABLE></td></tr> </table>";

echo "<TABLE border=\"0\" cellPadding=\"2\" cellSpacing=\"1\" width=\"100%\">

        <tr bgcolor=\"" . EBAY_TBLHEADER . "\" valign=\"middle\">

        <TD align=\"center\"><font size=\"1\" face=\"Verdana, Arial, sans-serif\" color=\"#FFFFFF\">

        <b> " . EBAY_FOOTER . " </b></font></td>

        </tr> </table>";

 

?>

          </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'); ?>

 

Any help anyone can give would be greatly appreciated.

 

Many thanks.

 

Ian

 

P.S. I have tried all the different versions of this contrib (I think) and they all do the same thing.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...