Miha Petkovsek
Miha Petkovsek
Which mysql version do you have ? For < 5.7 change varchar(255) to varchar(191) for table users (username) and devices (hostname).
can you check this ? https://github.com/phpipam/phpipam/pull/3985/files It was just merged to master branch.
Can you test this diff ? ```diff diff --git a/functions/classes/class.Radius.php b/functions/classes/class.Radius.php index 71e17ed..2168022 100644 --- a/functions/classes/class.Radius.php +++ b/functions/classes/class.Radius.php @@ -576,7 +576,7 @@ class Radius function SetAttribute($type, $value) { $attribute_index =...
I suggest you reinstall phpipam completely :) Here are the steps, assuming your installation folder is /var/www/phpipam: ``` cd /var/www/ mv phpipam phpipam.bkp GIT clone --recursive https://github.com/phpipam/phpipam.git phpipam cd phpipam...
Radius class was taken from http://developer.sysco.ch/php/ , I think someone contributed to phpipam long ago. Will try to update all code to php8, but need to setup a local Radius...
What error do you get in webserver/php-fpm logs ?
Can you test now, I pushed new code to master that uses dapphp/radius ? ``` git checkout master git pull cd functions composer install ```
Ok, for test remove webauthn and cbor from composer.json and run composer install again.
I merged changes into master for now, but it makes more sense to continue with dapphp/radius - supports better encryption and is maintained.
Hi, I am a bit confused. You are using nginx reverse proxy to proxy to apache on same server and different port ?