Amazon Parser

Amazon Parser 3.6

No permission to download
Just so I understand, for all previous Amazon urls that has been posted on my forum - it will overwrite them with my affiliate link instead of someone elses?
 
Hmm, it´s not working for me.
I wrote my id blala-21 in the config page of this addon but in no link to Amazon is my id after I wrote a link to amazon.
 
version 1.6 doesn't work with xenforo 1.3.2. Any ideas why?

I've checked 1.5, it works well
 
Last edited:
Small note... Version string still reads 1.6 (looking inside the exl, confirmed 1.6).

Not a big deal.
 
Last edited:
Does it change exciting Message?
And what happened with Skimlink if i deactivate Amazon Overwrite there but "go" redirect is active for other affili? Does it works correct with redirect?

And what happened with search URLs? As these one: http://www.amazon.de/s/ref=nb_sb_noss_1?__mk_de_DE=ÅMÅŽÕÑ&url=search-alias=aps&field-keywords=titanfall

@AndyB - I didn't see a reply to the above question, thus I'm asking too as I'm curious how does this add-on handle search URLS such as http://www.amazon.com/s/url=search&field-keywords=apple+ipad

Thanks for your time!
 
Really great Add-On - thanks a lot, AndyB!

I noticed that it works perfectly if I just enter a Amazon-URL, but it does not work if I enter a link name with an Amazon URL like this: Check out this great product on amazon!

edit: I did some more test on this issue. If I remove the single quotations ( ' ) from the URL= tag it works. If I leave them it does not work.

next update:
PHP:
    // check for [URL='amazon-link']some text[/URL]
     if (preg_match_all("/\[URL\=(?:\')?(http:\/\/(?:[A-z0-9\.]+)?amazon\.(br|ca|com|co.jp|co.uk|de|es|fr|in|it)\/(?:.+))(?:\')?](.+)\[\/URL\]/i", $text, $out))

If I change (?:\')? to just \' it works...?

PHP:
        // check for [URL='amazon-link']some text[/URL]
        if (preg_match_all("/\[URL\=\'(http:\/\/(?:[A-z0-9\.]+)?amazon\.(br|ca|com|co.jp|co.uk|de|es|fr|in|it)\/(?:.+))\'](.+)\[\/URL\]/i", $text, $out))
 
Last edited:
Top Bottom