1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Open Source eBay Affiliate Store - FREE SCRIPT

Discussion in 'Commission Junction' started by majohnst, May 11, 2008.

  1. pogung177

    pogung177 Well-Known Member

    Messages:
    415
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    110
    #41
    How to short base on specific prices. I want to display items with price at least $50 ..?
     
    pogung177, May 16, 2008 IP
  2. Tobidotman

    Tobidotman Peon

    Messages:
    499
    Likes Received:
    16
    Best Answers:
    0
    Trophy Points:
    0
    #42
    I love being part of projects like this , maybe it can be something big, it seems to have gotten all your interests, i will try uploading it and tell you guys how i get on.
    Wish me luck!
     
    Tobidotman, May 16, 2008 IP
  3. arthur

    arthur Peon

    Messages:
    82
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #43
    Please tell me how to change country from US to UK?
     
    arthur, May 16, 2008 IP
  4. arthur

    arthur Peon

    Messages:
    82
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #44
    Tell me please sitemap.xml file possible for your program?
     
    arthur, May 17, 2008 IP
  5. hexinator

    hexinator Peon

    Messages:
    357
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #45
    gotta try this. thnx for sharing man
     
    hexinator, May 17, 2008 IP
  6. KeithB

    KeithB Peon

    Messages:
    10
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #46
    Hi majohnst,

    Thanks for this product. I'm having some problems
    with my first install. What could be causing this error?:

    -------------------------------------------------
    Warning: mkdir() expects at most 2 parameters, 3 given in /home/bigeye/public_html/index.php on line 160

    Warning: fopen(/home/bigeye/public_html/cache/keywords/wii.xml) [function.fopen]: failed to open stream: No such file or directory in /home/bigeye/public_html/index.php on line 164
    Cannot save to xml file: /home/bigeye/public_html/cache/keywords/wii.xml
    ------------------------------------------------------

    I have all the files placed in my /public_html/ file
    and all the original files uploaded with appropriate
    changes to the default.php file and cache chmod to 777.

    Any ideas about what might be going on?

    Thanks,

    Keith
     
    KeithB, May 17, 2008 IP
  7. pogung177

    pogung177 Well-Known Member

    Messages:
    415
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    110
    #47
    Have you check, does your host support PHp5 or not..? Support CURL.. or not?
     
    pogung177, May 18, 2008 IP
  8. KeithB

    KeithB Peon

    Messages:
    10
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #48
    Thanks Pogung177 for the reminder. Checked with my hosting company,
    they said I just had to turn some stuff on. Did it and now all works fine!
     
    KeithB, May 18, 2008 IP
  9. contend

    contend Peon

    Messages:
    406
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #49
    I have one good question - where I can join as ebay affiliate ? :D
     
    contend, May 18, 2008 IP
  10. majohnst

    majohnst Peon

    Messages:
    78
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #50
    I've made a few changes based on all the input. Thanks for the help. I've posted a 1.1 version of McJiffy EASy at http://www.mcjiffy.com/files/easy-1.1.zip

    Here is what I changed.

    Version 1.1
    - fixed incorrect displaying of price information from ebay
    RSS, prices and bid counts not showing correctly

    - fixed base template to use / as site homepage instead
    of index.php

    - added logic to display custom text if no related keywords
    or topics found

    - added new options to ebay RSS search: minimum price, maximum
    price, ebay category, listing type (auction or buy it now)
    and sort by

    - fixed bug in theme that would not properly import the css
    stylesheet if McJiffy EASy was installed in a sub-diretory

    - added RewriteBase to htaccess file for use when McJiffy EASy
    is installed in a subdirectory

    I quick side note to Arthur, right now the program doesn't create a sitemap.xml file. That will have to wait until a future version.
     
    majohnst, May 18, 2008 IP
  11. rluna559

    rluna559 Active Member

    Messages:
    120
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    58
    #51
    Thanks for this free script, its awesome. Although the new version is bugged.

    I installed the new version and get errors when clicking on an auction. Your test store is broken as well.

    http://www.hondacivicsale.com

    I reverted to test if the original works and it did, but change back to show you the errors.
     
    rluna559, May 19, 2008 IP
  12. ChuckMcB

    ChuckMcB Peon

    Messages:
    22
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #52
    (neat script thanks for sharing)

    Seems there is a couple of error checking lines left in the v1.1 code.

    Find and remove these two lines in index.php to get the buy links working again:

    echo $url;
    Code (markup):
    print_r($_GET);
    Code (markup):
    C.

    ps. seems that v1.1 has fixed the "Warning: Invalid argument supplied for foreach()" error that folks were getting. (double quotes FTW)

    pps. For us that are testing/running this script in a sub-folder of our site will find the search does not work (it still thinks we are in the root). To fix open up this file: \themes\default\index.php

    find this line:
    <form action="/" method="get">
    Code (markup):
    and replace it with this code:
    <form action="<?php echo $baseUrl ?>" method="get">
    Code (markup):
    ppps. Seems the Home button needs fixed as well for us using sub-directories. in the same file find:

    <li><a href="/">Home</a></li>
    Code (markup):
    replace with
    <li><a href="<?php echo $baseUrl ?>">Home</a></li>
    Code (markup):
    Ohh yea the logo link needs the same fix:

    find:
    <a class="sitelogo" href="/" title="<?php echo $site['title'] ?>"></a>
    Code (markup):
    replace with
    <a class="sitelogo" href="<?php echo $baseUrl ?>" title="<?php echo $site['title'] ?>"></a>
    Code (markup):
    and find:
    <h2><a href="/" title="<?php echo $site['title'] ?>"><?php echo $site['title'] ?></a></h2>
    Code (markup):
    replace with
     <h2><a href="<?php echo $baseUrl ?>" title="<?php echo $site['title'] ?>"><?php echo $site['title'] ?></a></h2>
    Code (markup):
    pppps. The dig images need the same $baseUrl fix.

    ppppps. As do the related search links.


    HTH
     
    ChuckMcB, May 19, 2008 IP
  13. majohnst

    majohnst Peon

    Messages:
    78
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #53
    Sorry about those debug statements creeping in. I've removed them now.
     
    majohnst, May 19, 2008 IP
  14. ChuckMcB

    ChuckMcB Peon

    Messages:
    22
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #54
    Found (and fixed?) another two bugetts which I added to my post above before I noticed you replied.
     
    ChuckMcB, May 19, 2008 IP
  15. arthur

    arthur Peon

    Messages:
    82
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #55
    Thanks for updating work perfect, please tell me how use different country, for example uk or au or ca.
    Thank you.

     
    arthur, May 19, 2008 IP
  16. ChuckMcB

    ChuckMcB Peon

    Messages:
    22
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #56
    (perhaps I should take this over to majohnst's forum)

    I just tried to hack this myself by modifying 'siteId' and currency conversion code but I can't make the buy links work, they always give me a page not found error.

    What also would be very cool is the option to geo-target. ie. if a US user hits your site it display US ebay results, if a UK user hit the site it displays UK ebay results, all with an option to override the default. No need for a fancy ip2country database using the browser's country setting should be enough to know the 'nearest'/appropriate store to forward someone to.

    Even BANS can't do that: you have to load a totally different site (and mySQL database) up for each country (even when there is only only line of code different).

    C.
     
    ChuckMcB, May 19, 2008 IP
  17. arthur

    arthur Peon

    Messages:
    82
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #57
    Please tell us how to increase image size?
    Thank you.
     
    arthur, May 19, 2008 IP
  18. ChuckMcB

    ChuckMcB Peon

    Messages:
    22
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #58
    Try this: Open up themes\default\css\layout2_setup.css go to line #192 that reads

    .mcjiffy_image {width: 100%; height: 100px; text-align: center}
    Code (markup):
    Try changing the width and/or height to what you want (150% and 150px would be a good start)
     
    ChuckMcB, May 19, 2008 IP
  19. arthur

    arthur Peon

    Messages:
    82
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #59
    Thanks for reply, but didn't work.

     
    arthur, May 19, 2008 IP
  20. triplex

    triplex Peon

    Messages:
    380
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #60
    ok guys! this is comming out really nice! what about adding the ebay country? is it difficult?

    thanks
     
    triplex, May 19, 2008 IP