FindCmdLineSwitch al posto di ParamStr
Configure access point WiFi in minutes
To add basic authentication to you own http server is really simple, you only need to add inside the “onCommandGet” method the authentication check, as in the example shown after the image Inside the method you can:
1 2 3 4 5 6 7 8 9 10 11 |
if ( ARequestInfo.AuthUsername.ToUpper.Equals('USERNAME'.ToUpper) and ARequestInfo.AuthPassword.Equals('PASSWORD') ) then begin AResponseInfo. ResponseNo : = 401; AResponseInfo. AuthRealm : = 'Autentication required'; exit; end; |
related articles: Build your own HTTPS server with Delphi – Open SSL Example
Tested on: Ubuntu 22.04 Default php version is 8.1 and we want install php 7.4 Ondrej PPA contains PHP 8.2, 8.1, 8.0, 7.4, 7.3, 7.2, 7.1, 7.0 & PHP 5.6 packages. First update the system
1 |
sudo apt update && sudo apt upgrade |
1. Check Active PHP Version
1 |
php -v |
2. Install php on system Set the required PPA wich contains any…
Leggi tutto
To transfer a KVM virtual machine (VM) from one host to another, you can follow the steps below: Make sure you have the same version of KVM on both hosts. You can verify this by running the kvm –version command. Stop the VM you want to transfer. You can do this using the command virsh…
Leggi tutto
Gli helper sono un modo per estendere una classe senza utilizzare l’ereditarietà, utile anche per i record che non consentono affatto l’ereditarietà. La documentazione ufficiale è disponibile all’indirizzo: https://docwiki.embarcadero.com/RADStudio/Sydney/en/Class_and_Record_Helpers_(Delphi). Spesso mi son trovato a creare del codice per esportare un dataset o un singolo record con i suoi valori in uno statement SQL, e tutte…
Leggi tutto