QR Code
20 posts by 3 authors in: Forums > CMS Builder: Plugins & Add-ons
Last Post: June 28, 2011 (RSS)
By gkornbluth - June 20, 2011
Any way to name the generated QR Code files based on a "title" field in the requesting record instead of them all being called chart.png?
One of my clients has already gotten confused and put the wrong codes in the wrong places.
(Hope I didn't just overlook this in the documentation)
Thanks,
Jerry Kornbluth
Take advantage of a free 3 month trial subscription, only for CMSB users, at: http://www.thecmsbcookbook.com/trial.php
Re: [gkornbluth] QR Code
By robin - June 21, 2011
The google api that the chart generator uses always names the images as "chart.png". Without resorting to something fancy like using jquery to rename the images after the fact I think you're stuck with chart.png.
Robin
Programmer
interactivetools.com
By gkornbluth - June 21, 2011
What do you think it would take to solve this issue using Jquery?
I think this naming thing could be a real stumbling block as QR codes become more widely used.
Thanks,
Jerry
Take advantage of a free 3 month trial subscription, only for CMSB users, at: http://www.thecmsbcookbook.com/trial.php
Re: [gkornbluth] QR Code
By robin - June 22, 2011
This method might help:
http://api.jquery.com/attr/
I wonder - why does your client care about the file name? Are they generating them just to save the image to use elsewhere?
Thanks,
Robin
Programmer
interactivetools.com
By gkornbluth - June 22, 2011
Appreciate your looking into this.
We're generating a list of QR codes for a potentially long series of records, and then copying individual codes from that list into documents for various print media campaigns.
A few codes are easy to keep track of and even manually rename, but if one gets out of place in a longer list, it's near impossible to sort them out.
I hate to admit it, but I’ve stared at the http://api.jquery.com/attr/ docs for quite a while, and I still haven’t a clue how to implement it in the following, to change the file names of the generated QR codes from chart.png to <?php echo$record['title'] ?>.png:
Thanks for any help you can offer,
Jerry
<table border="0">
<tr>
<td align="center"><hr /></td>
</tr>
<?php foreach ($my_list_Records as $record): ?>
<?php $num = $record['num'] ?>
<tr>
<td align="center">
<?php echo strtoupper($record['title']) ?>
</td>
</tr>
<tr>
<td align="center" valign="top">
<!--Show QR code with title and record number-->
<?php
echo qrCode(array(
'type' => 'url',
'size' => '547', // thumbnail height & width in pixels
'url' => 'http://www.mysite.com/my_detail.php?' . $num
));
?>
<br />
<br />
URL to the target for this record: http://www.mysite.com/my_detail.php?<?php echo $num ?>
<hr />
</td>
</tr>
<?php endforeach ?>
</table>
The first CMS Builder reference book is now available on-line!
Take advantage of a free 3 month trial subscription, only for CMSB users, at: http://www.thecmsbcookbook.com/trial.php
Re: [gkornbluth] QR Code
By Toledoh - June 24, 2011
QR Codes are great, as they can hold a lot of data. However, the more data they hold, the more complex they become. The less data, the faster the response is, especially with smart-phone apps.
There's a plethora of URL shortening such as http://goo.gl/
I've attached a sample image. It's of 2 QR codes pointing to the same address - one of the full URL, one of a shortened URL. The difference is quite dramatic.
So... is there the ability to automatically shorten URL's and use that shortened URL to generate the QR Code?
Tim (toledoh.com.au)
Re: [Toledoh] QR Code
By gkornbluth - June 24, 2011 - edited: June 24, 2011
Interesting that you should bring that up.
I'm exploring the same question right now.
Here are s few things that I found so far (I haven"t got a clue how to use them, but they may give someone an idea or two)
http://www.mdj.us/snews-cms/hacks-mods/automatically-add-autogenerated-short-urls-to-your-snews-cms/ a now defunct sourceforge project http://lilurl.sourceforge.net/,
and then do a Google search for open source short url generator.
I'll post what else I find and hope you'll do the same.
Jerry Kornbluth
Take advantage of a free 3 month trial subscription, only for CMSB users, at: http://www.thecmsbcookbook.com/trial.php
Re: [gkornbluth] QR Code
By Toledoh - June 27, 2011 - edited: June 28, 2011
http://www.fivetechnology.com/blog/2011/06/27/creating-qr-codes-and-tracking-progress-with-google-analytics/
But, it highlights even more, the need for URL shortening...
I've added this to a page:
<img src="<?php echo qrCode(array(
'type' => 'url',
'url' => "http://" . $_SERVER["SERVER_NAME"] . $_SERVER["REQUEST_URI"],
'mode' => 'url',
'size' => '200',
)); ?>&utm_source=source&utm_medium=medium&utm_term=term&utm_content=content&utm_campaign=name" class="padBottom" alt="QR Code" />
However, I get
<img class="padBottom" alt="QR Code" src="http://chart.apis.google.com/chart?cht=qr&chs=200x200&chl=http%3A%2F%2Fworkshoptuesdays.com.au%2Frenovationfix%2Fcoupon2.php%3Fcode%3D21hgh214y314bh13&chld=%7C0&utm_source=source&utm_medium=medium&utm_term=term&utm_content=content&utm_campaign=name">
which doesn't seem to work... when I scan the code, it seems to skip the tags - or is this meant to happen?Tim (toledoh.com.au)
Re: [gkornbluth] QR Code
By Toledoh - June 28, 2011
Tim (toledoh.com.au)
Re: [Toledoh] QR Code
By Toledoh - June 28, 2011
Would someone with more knowledge than myself be able to incorproate this into the QRCode plugin? Or should it be a plugin by itself?
http://www.phpriot.com/articles/google-url-shorening-api
Each install of the plugin would then require an API Key... but they are free.
Tim (toledoh.com.au)