1. #31
    Leeky is an unknown quantity at this point Pagerank10.co.uk
    Join Date
    Mar 2005
    Location
    uk
    Posts
    2,571
    Thanks
    155
    Thanked 112 Times in 78 Posts

    Re: Free PHP Voucher Code Framework

    Well, I suppose im the only one who knows what ours is going be like when complete, although it will be live very soon it wont be complete for some time to come.

    Pagerank10 is the best at what it does, and this is going to dwarf it.

    Lee

  2. #32
    kylah16 is an unknown quantity at this point Registered User
    Join Date
    Dec 2006
    Posts
    462
    Thanks
    58
    Thanked 15 Times in 14 Posts
    Quote Originally Posted by Leeky View Post
    Well, I suppose im the only one who knows what ours is going be like when complete, although it will be live very soon it wont be complete for some time to come.

    Pagerank10 is the best at what it does, and this is going to dwarf it.

    Lee
    You're not short on confidence are you lol

  3. #33
    Leeky is an unknown quantity at this point Pagerank10.co.uk
    Join Date
    Mar 2005
    Location
    uk
    Posts
    2,571
    Thanks
    155
    Thanked 112 Times in 78 Posts
    Quote Originally Posted by kylah16 View Post
    You're not short on confidence are you lol
    no, just short on patience and public relation skills lol

    Lee

  4. #34
    Andrew Starr is an unknown quantity at this point Registered User
    Join Date
    Jan 2008
    Location
    Yorkshire
    Posts
    656
    Thanks
    23
    Thanked 36 Times in 30 Posts
    listen closely and you can actually hear the sound of people clambering on the bandwagon. Teddy would be so proud

    (is there space for one more?)

  5. #35
    3wdl 3wdl's Avatar Registered User
    Join Date
    Jun 2005
    Posts
    2,902
    Thanks
    155
    Thanked 98 Times in 66 Posts
    Quote Originally Posted by Leeky View Post
    Like you say (and i have said), they are not really the same anyway... ours is much much better.. at at least will be anyway :tup
    Personally I think the word is different, not better

    We purposely made ours so that users would need to modify it so that all the sites didn't look the same, it's quite easy to template up and we'll be releasing a Wiki soon so that others can contribute (another network have already expressed a desire to build an XML feed and get it integrated, which is great).

    This is one of a number of website tools that we'll be releasing over the next 6 months to help expand our affiliates reach and I thank everyone that has found it useful and hope that the others will be just as good!

    Cheers
    James
    James Little | Head of Affiliate Development | AffiliateFuture
    Email/MSN: james.little@affiliatefuture.co.uk | Phone: 0207 927 6579

  6. #36
    purple Affiliate
    Join Date
    Aug 2003
    Location
    Bristol
    Posts
    2,177
    Thanks
    46
    Thanked 36 Times in 27 Posts
    Quote Originally Posted by 3wdl View Post
    Personally I think the word is different, not better

    We purposely made ours so that users would need to modify it so that all the sites didn't look the same, it's quite easy to template up and we'll be releasing a Wiki soon so that others can contribute (another network have already expressed a desire to build an XML feed and get it integrated, with is great).

    This is one of a number of website tools that we'll be releasing over the next 6 months to help expand our affiliates reach and I thank everyone that has found it useful and hope that the others will be just as good!

    Cheers
    James
    James and code guru steve you have done something great by looks of it.

    I will have proper play in week or so.

    I dont know looked for a discount code script for years then 3 turn up at once!!
    Follow, My Affiliate Marketing Musing. on. http://www.twitter.com/purple

  7. #37
    Leeky is an unknown quantity at this point Pagerank10.co.uk
    Join Date
    Mar 2005
    Location
    uk
    Posts
    2,571
    Thanks
    155
    Thanked 112 Times in 78 Posts
    Quote Originally Posted by 3wdl View Post
    Personally I think the word is different, not better

    Cheers
    James
    ok so my Bugatti Veyron is different to your Morris Oxford... at least we agree on something

    Have you signed up to all those merchants for me yet? ... some people are so lazy!!

    Lee

  8. #38
    Barry Typing with both fingers.
    Join Date
    Aug 2003
    Location
    Allt Y Coed Farm, North Pembrokeshire
    Posts
    3,834
    Thanks
    215
    Thanked 143 Times in 108 Posts
    As an affiliate - I'll have a go with both Lee's and AF's scripts. They both have different capabilities and are exciting to look at and work with. I dont think there is any 'copycat' behaviour going on.

    Ta

    Baz

  9. #39
    purple Affiliate
    Join Date
    Aug 2003
    Location
    Bristol
    Posts
    2,177
    Thanks
    46
    Thanked 36 Times in 27 Posts
    Like Baz I will consider all options made available to see which works best for me. THey all have their own benefits its all good for the affiliate industry. Innovation is what makes us all evolve and grow, and makes the affiliate marketing channel more and more important in any merchants marketing mix
    Follow, My Affiliate Marketing Musing. on. http://www.twitter.com/purple

  10. #40
    befuddle is an unknown quantity at this point befuddle's Avatar Registered User
    Join Date
    Jan 2005
    Location
    Leeds, UK
    Posts
    1,054
    Thanks
    79
    Thanked 51 Times in 37 Posts
    I had the same idea to run such a site too on 17th January 2008, when I registered two new domain names 'easyshopcodes' ... erm just one day after Matt Wood posted on here 'I wonder if it would help if we built a proper voucher code database on affiliates4u'.

  11. #41
    lowndsy is an unknown quantity at this point lowndsy's Avatar Dark Prince
    Join Date
    Aug 2003
    Location
    Behind you
    Posts
    1,688
    Thanks
    4
    Thanked 16 Times in 14 Posts
    Fixed that darn £ sign issue! Not ideal, but it is all down to different servers having charsets, so... open up functions.php and replace the cleandata function with this one.
    It is a bit of a hack and basically replaces offending characters with their ISO value to sidestep the charset issues, but it should be reliable and consistent, which is what counts.

    TAKE THE SPACES OUT OF THE ISO values (& # 36; etc) - I had to put them in to make them display here.

    PHP Code:
    // Clean Data
    function cleandata ($cleantarget

    $cleantarget TRIM($cleantarget); 
    $cleantarget STRIPSLASHES($cleantarget); 
    $cleantarget=strip_tags($cleantarget); 
    $cleanchars = array("'""*""@""`"",""~""("")""{""}""\\""\""); 
    $cleantarget str_replace($cleanchars""$cleantarget);
    $cleantarget str_replace("£""& # 163;"$cleantarget);
    $cleantarget str_replace("%""& # 37;"$cleantarget);
    $cleantarget str_replace("$""& # 36;"$cleantarget);

    //USEFUL ROUTINES TO KEEP TUCKED AWAY 
    //Heavy duty one below - uncomment use if you absolutely only want letters and numbers...
    //$cleantarget = ereg_replace("[^A-Za-z0-9]", "", $cleantarget); 
    // Conditional ADDSLASHES CLAUSE - CHECKS IF MAGIC QUOTES IS INSTALLED - MIGHT BE USEFUL 
    //if (!get_magic_quotes_gpc()) { 
    //$cleantarget=addslashes($cleantarget); 
    //} 

    $cleanedup=$cleantarget
    return 
    $cleanedup

    Again, you will need to reimport your vouchers to update them. Empty the DB and re-import or just edit them and save to update them.

  12. #42
    befuddle is an unknown quantity at this point befuddle's Avatar Registered User
    Join Date
    Jan 2005
    Location
    Leeds, UK
    Posts
    1,054
    Thanks
    79
    Thanked 51 Times in 37 Posts
    Hmm, I've updated that but still no joy for me. I've just added a demo description for 123 Cartridges that includes a £ sign.

  13. #43
    Cheapdvds is an unknown quantity at this point Registered User
    Join Date
    Sep 2007
    Posts
    976
    Thanks
    34
    Thanked 41 Times in 36 Posts
    did u empty the database? goto phpmyadmin click the tables and click empty , then re import the feed in the voucher admin

  14. #44
    befuddle is an unknown quantity at this point befuddle's Avatar Registered User
    Join Date
    Jan 2005
    Location
    Leeds, UK
    Posts
    1,054
    Thanks
    79
    Thanked 51 Times in 37 Posts
    I can use
    Code:
    & pound ;
    in the description for it to display fine but not
    Code:
    £
    ... think previously though, it liked neither.

  15. #45
    lowndsy is an unknown quantity at this point lowndsy's Avatar Dark Prince
    Join Date
    Aug 2003
    Location
    Behind you
    Posts
    1,688
    Thanks
    4
    Thanked 16 Times in 14 Posts
    Looking at the source for your page I can see that the record for that description has not been updated. You need to open it up in the admin and save it again - that will apply the cleaning function to the content and turn the pound signs into ISO values. Or just continue to use & pound; ...

    My test installation at urvouchers.co.uk is using the default installation and as you can see that one is fine now (try the description on avanquest).

    The zip download has been updated and should now (touch wood) be free of these character issues - it is just a bit niggly making something always look the same when servers are set up differently but we still need to store human readable data for things like urls and descriptions without pulling too much stuff out.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. Webgains weekly updated merchant promotions
    By Emma Delaforce in forum Webgains
    Replies: 0
    Last Post: 24-01-08, 12:46 PM
  2. Weekly Update: Webgains Current Promotions
    By Emma Delaforce in forum Webgains
    Replies: 2
    Last Post: 08-06-07, 10:09 AM
  3. Replies: 0
    Last Post: 10-01-07, 08:57 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Content Relevant URLs by vBSEO 3.5.0 RC2