Reputation: 23
daloRadius is an open source and free software based on php, i downloaded it and trying to run it in waamp server, after the login page i am getting this error
include_once(DB.php): failed to open stream: No such file or directory in C:\wamp\www\daloradius-0.9-9\library\opendb.php
I have searched thoroughly the db.php file but couldnt find it in the folder, what should I do? Do Ii have to create the file?
Upvotes: 2
Views: 10518
Reputation: 51
I was working on a ubuntu 14 based freeradius setup and daloradius as web interface, encountered the same issue.
PHP Warning: include_once(DB.php): failed to open stream: No such file or directory in /var/www/html/daloradius/library/opendb.php on line 84
Installing php-db
worked for me:
sudo apt-get install php-db
Upvotes: 5
Reputation: 80
You are missing the PHP Pear DB library. Install the library via pear install DB
Upvotes: 4