Hello, So I finally shifted the local installation of RosarioSIS to the live server, everything went fine, Database was imported successfully as well, only one last error is being shown on diagnostic.php
related to mysqldump utility not being found.
I have already done the trial & error, the file exists in the correct location, but still the error persists.
[root@server bin]# ls -l mysqldump
lrwxrwxrwx 1 root root 12 Apr 7 19:49 mysqldump -> mariadb-dump
[root@server bin]# realpath mysqldump
/usr/bin/mariadb-dump
[root@server bin]# realpath mariadb-dump
/usr/bin/mariadb-dump
[root@server /]# find . -name mysqldump
./usr/bin/mysqldump
[root@server /]# find . -name mariadb-dump
./usr/bin/mariadb-dump
As you can see I tried entering the path of both mysqldump
and mariadb-dump
in config.inc.php
both of them are located in /usr/bin/
but still the system can't find it and errors still persist.
Error: The path to the database dump utility specified in the configuration file (config.inc.php) is wrong! (/usr/bin/mysqldump)
Error: The path to the database dump utility specified in the configuration file (config.inc.php) is wrong! (/usr/bin/mariadb-dump)
I also searched and read the earlier topics related to same error, apparently they were not entering the correct filepath but I am entering the right path but still error exists.
Any help will be appreciated.
Thanks and regards.