Hi guys,
Here is the solution to my problem, if someone has the same question as mine.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
In short, my problem was not in navigating whmcs, but in some functions such as suspension and account creation. The service was actually executed on the server but whmcs did not receive the return.
The error log returned the following:
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
[Tue Jun 02 15:51:28.730550 2020] [proxy_fcgi:error] [pid 41392:tid 140348181440256] [client 1.1.1.1:37024] AH01067: Failed to read FastCGI header, referer:
https://www.dominio.com.br/whmcs/admin/clientsservices.php?userid=1[Tue Jun 02 15:51:28.730589 2020] [proxy_fcgi:error] [pid 41392:tid 140348181440256] (104)Connection reset by peer: [client 1.1.1.1:37024] AH01075: Error dispatching request to : , referer:
https://www.dominio.com.br/whmcs/admin/clientsservices.php?userid=1-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
And my browser reported an error on the inspection - 503 service unavailable.
Practically whmcs was not receiving the response from the server because the webservice service was restarted at the time of the request, I don't know why but this is a php-fpm configuration.
Several forums said to increase the webservice timeout the request_timeout of the php-fpm pool but the only directive that needs to be changed is process_control_timeout.
just add this in php-fpm.conf
I added 10s to the value and it worked normal.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
before:
include = /opt/alt/php-fpm73/usr/etc/php-fpm.d /*.conf
after:
process_control_timeout = 10s
include = /opt/alt/php-fpm73/usr/etc/php-fpm.d /*.conf
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Hope this helps.