Via Cà Matta 2 - Peschiera Borromeo (MI)
+39 02 00704272
info@synaptica.info

Categoria: Articoli

Digital Innovation Partner

Are you ready to deploy apps for VisionOS?

After updating our XtumbleRetail application to the iOS 16.4 SDK version and starting publishing on the Apple Store, Apple’s developer portal offered us a new publishing platform available…. VisionOS.   Embarcadero Delphi proves to be an increasingly key tool for us, with a single code we are able to publish on all platforms. And for…
Leggi tutto

Ubuntu 22.04 configure Access Point by shell commands

Configure access point WiFi in minutes

Add basic authentication to your IdHttpServer with Delphi

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: if ( ARequestInfo.AuthUsername.ToUpper.Equals(‘USERNAME’.ToUpper) and ARequestInfo.AuthPassword.Equals(‘PASSWORD’) ) then begin AResponseInfo. ResponseNo : = 401; AResponseInfo. AuthRealm : = ‘Autentication…
Leggi tutto

How To Install different version of PHP on Ubuntu

  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   sudo apt update && sudo apt upgrade 1. Check Active PHP Version php -v 2. Install php on system…
Leggi tutto

KVM -HowTo move or copy a VM from Host to onther Host

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