Giandonato Inverso
48d7fefd02
Remove donation button from README
2025-09-02 21:52:03 +02:00
Giandonato Inverso
27a5dbd466
Merge pull request #144 from CLAlberto/master
...
fix(read.php): replace deprecated FILTER_SANITIZE_STRING for PHP 8.3 …
2025-05-08 08:56:07 +02:00
CLAlberto
2c3f2bb030
fix(read.php): replace deprecated FILTER_SANITIZE_STRING for PHP 8.3 compatibility
...
### Problem
The usage of `FILTER_SANITIZE_STRING` in `read.php` causes a deprecation warning in PHP 8.1 and breaks functionality entirely in PHP 8.3, as the constant was removed.
### Solution
This commit replaces:
```php
filter_input(INPUT_GET, 'id', FILTER_SANITIZE_STRING);
with a safer and future-proof alternative:
$id = filter_input(INPUT_GET, 'id', FILTER_UNSAFE_RAW);
$id = trim(strip_tags($id));
> _Thanks for maintaining this project! Happy to contribute._ 😊
2025-05-06 16:16:22 +02:00
Giandonato Inverso
e4d3af69b5
Merge pull request #143 from angelosleebos/patch-1
...
Make environment variables compatible for other platforms
2025-04-14 12:19:34 +02:00
Giandonato Inverso
938d934b51
Merge pull request #142 from rafinou62/patch-1
...
Update read.php prevent SQL Injection & XSS attacks
2025-04-14 12:18:32 +02:00
Angelo Sleebos
cee6f4d3d5
Make environment variables compatible for other platforms
...
Make environment variables compatible for other platforms
2025-04-07 01:11:17 +02:00
Raphaël Wanecque
1465ce02ad
Update read.php prevent SQL Injection & XSS attacks
2025-03-26 17:04:33 +01:00
giandonato.inverso@edempg.it
ba57334142
edit demo url
2025-03-22 15:51:02 +01:00
giandonato.inverso@edempg.it
615d983828
config rollback
2025-03-20 23:38:55 +01:00
giandonato.inverso@edempg.it
b245694824
Merge remote-tracking branch 'origin/master'
2025-03-19 23:40:50 +01:00
giandonato.inverso@edempg.it
378968576f
bug fix Class Qrcode not found
2025-03-19 23:40:36 +01:00
Giandonato Inverso
0d4368575b
Merge pull request #136 from MickGe/patch-1
...
add cookies secure flags
2025-02-09 16:16:53 +01:00
MickGe
05e80a075a
add cookies secure flags
2025-02-07 11:35:24 +01:00
giandonato.inverso@edempg.it
92a1f17dbe
updated readme and docs
2025-01-21 22:41:14 +01:00
giandonato.inverso@edempg.it
d1505e1e08
updated readme
2025-01-12 23:50:15 +01:00
giandonato.inverso@edempg.it
f05c073ad4
Local setup eliminated and documentation updated
2025-01-12 23:48:49 +01:00
giandonato.inverso@edempg.it
79d9ac71a3
Merge remote-tracking branch 'origin/master'
2025-01-12 19:48:31 +01:00
Giandonato Inverso
ffc5b64967
Merge pull request #130 from Shineson1001/feature/129-QRCodeGeneratorSwitch
...
🐛 Global switch for the QR code generator (#129 )
2025-01-02 12:04:55 +01:00
Shine
869dd2c799
🐛 Global switch for the QR code generator ( #129 )
2024-12-31 20:48:56 +01:00
giandonato.inverso@edempg.it
531820e2a8
Revert "Revert "Instead using external API (api.qrserver.com) .. use chillerlan/php-qrcode""
...
This reverts commit 630bbf3aea .
2024-12-23 18:52:11 +01:00
giandonato.inverso@edempg.it
630bbf3aea
Revert "Instead using external API (api.qrserver.com) .. use chillerlan/php-qrcode"
...
This reverts commit 9b65bb8020 .
2024-12-23 18:49:05 +01:00
Giandonato Inverso
8238a81494
Merge pull request #128 from Shineson1001/feature/116-EventIncorrectTimeZone
...
🐛 Event: Incorrect Time Zone
2024-12-20 20:02:32 +01:00
Shine
cc45f0659c
🐛 Event: Incorrect Time Zone
...
- Add "Time zone" input field.
- 24-Hour time format.
- Set Min-Year and Max-Year dynamically
2024-12-19 22:34:42 +01:00
Giandonato Inverso
ad37224890
Merge pull request #127 from Shineson1001/feature/88-SelfHostedQRCodeGenerator
...
Instead using external API (api.qrserver.com) .. use chillerlan/php-qrcode
2024-12-15 16:35:29 +01:00
Shine
9b65bb8020
Instead using external API (api.qrserver.com) .. use chillerlan/php-qrcode
2024-12-15 14:36:39 +01:00
Giandonato Inverso
97481c2444
Merge pull request #126 from Shineson1001/feature/2FA-QRCodes
...
Add 2FA QR Code
2024-12-14 09:17:50 +01:00
Shine
8151de4b9a
Add 2FA QR Code
...
Save your 2FA secrets to QR-Code.
2024-12-13 23:42:57 +01:00
Giandonato Inverso
477d7803f0
available plugins
2024-10-20 16:32:58 +02:00
Giandonato Inverso
8cc5294a84
Update README.md
2024-10-20 11:07:12 +02:00
giandonato.inverso@edempg.it
e6aac416d9
bug fix in helpers.php
2024-04-21 12:55:03 +02:00
giandonato.inverso@edempg.it
e84f853d80
edit readme
2024-04-21 12:38:35 +02:00
giandonato.inverso@edempg.it
7d5a4b889c
bug fix
2024-04-18 20:54:04 +02:00
giandonato.inverso@edempg.it
c157815ca8
fix in bulk action
2024-04-18 20:44:22 +02:00
giandonato.inverso@edempg.it
2d9b6162e1
readme
2024-04-18 20:35:04 +02:00
giandonato.inverso@edempg.it
096c239715
bug fix in read.php, bump version in footer, NEW: bulk delete
2024-04-18 20:33:20 +02:00
giandonato.inverso@edempg.it
5bdcb8e2bf
bug fix database prefix in Qrcode class
2024-03-11 15:43:16 +01:00
giandonato.inverso@edempg.it
98ae82a040
bug fix bulk download
2024-03-04 14:36:18 +01:00
Giandonato Inverso
15b5ece4f9
Merge pull request #94 from tranmh/xss_static_qrcode
...
Fix Security: Stored Cross Site Scripting for static QR code
2024-03-01 09:58:29 +01:00
Minh Cuong Tran
b03238b4c3
Fix Security: Stored Cross Site Scripting for static QR code, see https://github.com/giandonatoinverso/PHP-Dynamic-Qr-code/issues/93
2024-03-01 08:03:31 +01:00
Giandonato Inverso
2287d98455
Merge pull request #92 from tranmh/fix_remove_DATABASE_PREFIX_for_getOne
...
Inconsistency of using DATABASE_PREFIX with getOne()
2024-02-29 00:25:17 +01:00
Minh Cuong Tran
3e43b72eec
Inconsistency of using DATABASE_PREFIX with getOne()
2024-02-28 16:56:39 +01:00
Giandonato Inverso
5488ad0a84
Merge pull request #91 from tranmh/mixed_content_blocked
...
fix: mixed content blocked for http and https
2024-02-28 14:16:21 +01:00
Minh Cuong Tran
9710ae0673
fix mixed content blocked for http and https: Mixed Content: The page at ' https://localhost/qrcode/dynamic_qrcodes.php ' was loaded over HTTPS, but requested an insecure stylesheet ' http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css '. This request has been blocked; the content must be served over HTTPS.
2024-02-28 13:55:44 +01:00
Giandonato Inverso
893b883dbf
Merge pull request #90 from tranmh/fix_case_sensitive_filename
...
Fix case sensitive filename
2024-02-27 13:25:17 +01:00
Minh Cuong Tran
60620e15dd
fix: case sensitive for filename
2024-02-27 13:18:52 +01:00
Minh Cuong Tran
ec786d2956
fix: case sensitive for filename
2024-02-27 13:18:01 +01:00
Giandonato Inverso
a4d8455e5a
increased size of column link - dynamic qrcode
...
increased size of column link - dynamic qrcode
2024-02-14 23:58:00 +01:00
Giandonato Inverso
5ac338945d
Update README.md
...
updated php version requirement
2024-01-03 00:43:50 +01:00
Giandonato Inverso
6e213483a4
Update README.md
2023-10-30 17:02:13 +01:00
Giandonato Inverso
8a926ac0f3
bug fix redirect url with docker installation
2023-10-17 23:24:34 +02:00