asadkhan
Verified User
now its showing blank page instead of token error @Mark please fix the issue ASAP
ftp_upload.php exit code: 67
ftp_upload.php output: curl: (67) Access denied: 530
curl return code: 67
<3:31:25>
I see today now Current Available Version 1.591000
Is there any thread about this release?
You may like to check https://www.directadmin.com/versions.php?version=1.591000
Yes but once a while for small and fast fixes they don't always.Usually they start a new thread for it.
2019:09:23-18:04:13: ensure_owner: HardLink found on /usr/local/directadmin/scripts/packages/ncftp-3.2.6/ncftp/bookmark.c (2 links). Was attempting to ensure owner is diradmin:diradmin
2019:09:23-18:04:13: ensure_owner: HardLink found on /usr/local/directadmin/scripts/packages/ncftp-3.2.6/win/bmed/bookmark.c (2 links). Was attempting to ensure owner is diradmin:diradmin
2019:09:25-11:06:12: ensure_owner: HardLink found on /usr/local/directadmin/scripts/packages/ncftp-3.2.6/ncftp/bookmark.c (2 links). Was attempting to ensure owner is diradmin:diradmin
2019:09:25-11:06:12: ensure_owner: HardLink found on /usr/local/directadmin/scripts/packages/ncftp-3.2.6/win/bmed/bookmark.c (2 links). Was attempting to ensure owner is diradmin:diradmin
Yes but once a while for small and fast fixes they don't always.
Wil 1.59.1 also fix this? I found this in the /var/log/directadmin/security.log file:
And I wonder why this happens as it was said that in 1.59.0 ncftp would not be used anymore.Code:2019:09:23-18:04:13: ensure_owner: HardLink found on /usr/local/directadmin/scripts/packages/ncftp-3.2.6/ncftp/bookmark.c (2 links). Was attempting to ensure owner is diradmin:diradmin 2019:09:23-18:04:13: ensure_owner: HardLink found on /usr/local/directadmin/scripts/packages/ncftp-3.2.6/win/bmed/bookmark.c (2 links). Was attempting to ensure owner is diradmin:diradmin 2019:09:25-11:06:12: ensure_owner: HardLink found on /usr/local/directadmin/scripts/packages/ncftp-3.2.6/ncftp/bookmark.c (2 links). Was attempting to ensure owner is diradmin:diradmin 2019:09:25-11:06:12: ensure_owner: HardLink found on /usr/local/directadmin/scripts/packages/ncftp-3.2.6/win/bmed/bookmark.c (2 links). Was attempting to ensure owner is diradmin:diradmin
Happens on multiple servers. Maybe it's best to just remove the ncftp package from the packages directory?
Since updating to the newer Directadmin 1.59.0 which uses curl instead of ncftp this is happening:
This is odd because the backup still succeeded afterwards and there was a smaller backup running before it which was transferred at 3:33:59 which succeeded successfully with the same password.
Or does this happen because curl can't make concurrent logins or something?
Anyway I never have seen access denied notices on ncftpput before. What could cause this?
After upgrade to Version 1.591000 i got 503 Service Unavailable error on websites
After upgrade to Version 1.591000 i got 503 Service Unavailable error on websites
Yes Nothing changeDid you have custom NGINX or Apache files on /usr/local/directadmin/data/templates/custom ? then check that.
I did but not workrestart you php-fpm service
how to fix, I have the same errorThanks for the update!
I tried following the phpMyadmin SSO guide, but gets a "IP mismatch" error thrown at me when I try to click the login button on a database. Any idea how to fix this?
Hello,
We're very pleased to announce the release of DirectAdmin 1.59.0.
You can update through:Code:Admin Level -> Licenses/Updates -> Update DirectAdmin
John
I tried following the phpMyadmin SSO guide, but gets a "IP mismatch" error thrown at me when I try to click the login button on a database. Any idea how to fix this? The problem is urgent for customers who are trying to log in, I cannot log in to phpmyadmin
Please give me instructions, I follow this commandDid you already try rebuild phpmyadmin and php on custombuild?
Assuming you dont have any custom config files you created in this area.Please give me instructions, I follow this command
cd /usr/local/directadmin/
./directadmin set one_click_pma_login 1
service directadmin restart
cd custombuild
./build update
./build phpmyadmin
cd /usr/local/directadmin/custombuild
./build clean
./build clean_old_webapps
./build update
./build update_da
cd /usr/local/directadmin/
./directadmin set one_click_pma_login 1
service directadmin restart
cd custombuild
./build update
./build phpmyadmin
For the "IP mismatch" you could just strip that out from the /var/www/html/phpMyAdmin/direct_login/index.php, but your /var/log/httpd/error_log (depending on URL host value, and php type.. where ever php errors are logged) should have something like
phpMyAdmin: direct_login: IP mismatch '$token_ip' != '$client_ip'
$token_ip = inet_pton($file_data['ip']);
$client_ip= inet_pton($_SERVER['REMOTE_ADDR']);
if ($token_ip != $client_ip)
{
error_log("phpMyAdmin: direct_login: IP mismatch '$token_ip' != '$client_ip'");
die_rm("IP mismatch", $token_file);
}
if (false)