Log in

View Full Version : QR codes into Downloads II mod


pizzamargherita
07-17-2011, 08:59 AM
I've the intention to add automatically a QR for each file into the Downloads II mod I've installed into my website, to allow users downloading file from their smartphones.

I've yet found the code I need to reach this point, but it won't work properly for my case.

Check it:
The html...
<img src="http://chart.apis.google.com/chart?chs=150x150&amp;cht=qr&amp;chl=convert-this&amp;choe=UTF-8&amp;chld=L|4">
...is able to convert the text "convert-this" into a QR code.

This is the return image:
https://vborg.vbsupport.ru/external/2011/07/66.jpg

So I put the page url in place of "convert-this" to have the QR code for each download page.
I've modified the code as you can see:
<img src="http://chart.apis.google.com/chart?chs=150x150&amp;cht=qr&amp;chl=http://www.moddingstudio.com/downloads.php?do=file&amp;id={vb:raw file.id}&amp;choe=UTF-8&amp;chld=L|4"></img>
..but the variable {vb:raw file.id} is not interpreted by vbulletin. (is simply ignored).

What can I do to correct this issue?
(I think this can be useful for many people, also for vb pages or cms articles)

Thank you in advance!
(And sorry for my bad english, but I'm italian)

HMBeaty
07-17-2011, 01:42 PM
I think that variables like {vb:raw abcd} are ignored by vbulletin under certain tags like <img>.
I'm true?
Alternatively, I can with any method insert under the <img> tag the current url??
Yes, so you would have to use...
<img src="http://chart.apis.google.com/chart?chs=150x150&amp;cht=qr&amp;chl=http://www.moddingstudio.com/downloads.php?do=file&amp;id='.$file.id.'&amp;choe=UTF-8&amp;chld=L|4"></img>

pizzamargherita
07-18-2011, 04:30 AM
SOLVED: Google charts recognizes the "&" digit as parameters separator.
It's enough to change the "&" digit in the url into "%26"...

resulting code:
<img src="http://chart.apis.google.com/chart?chs=150x150&amp;cht=qr&amp;chl=http://www.moddingstudio.com/downloads.php?do=file%26id={vb:raw file.id}&amp;choe=UTF-8&amp;chld=L|4">

It works very nice!
You can check out the final result clicking here: http://www.moddingstudio.com/downloads.php?do=file&id=181

BirdOPrey5
07-18-2011, 04:43 PM
Very cool :up:.