WHM/cPanel: Create New Account ERROR - cpanel

When creating a new account in WHM I get this error instantly when I click the Create button: 'A fatal error or timeout occurred while processing this directive'. It says 'show' for more info but its not clickable. Certain the entered information is correct. Any suggestions?
.
CENTOS 6.9 v66.0.29, Load Averages: 0.05 0.06 0.02

After much research and time wasting this proved to be a server side issue. The host rebooted the server and reset VPS quotas and all works good now. I would recommend contacting your host first if you have the same problem.

Related

Need help in fixing this error "Connection reset by peer - SSL_connect"

Need help in fixing this error
Faraday::ConnectionFailed (Connection reset by peer - SSL_connect):
this is logfile from /var/log/gitlab/gitlab-rails/production.log
i got this error when i'm trying to google auth to our gitlab-ce.
this is my environment:
- CentOS 7
- Gitlab 12.5
any help is appreciated :) Thanks
You had a similar error reported in gitlab-org/gitlab-foss issue 1924:
I had the exact same thing happen last night and it turned out that the /etc/resolv.conf within the Docker container was unreadable by the "git" user for the container.
This prevents it from resolving the host you're calling back to.
The ball started rolling after reading this issue: docker-gitlab issue 627.
In your case, you might not use a GitLab within Docker, in which case, check your proxy.

How to make Roundcube work with Postfix + Courier (not dovecot)

I have a mail server working ok with Postfix+Courirer+MySql (virtual users), and SquirrelMail, I could never configure SqMail properly for message characters sets, so I would like to give a try to Roundcube, I have installed it, I did some configs, but at login screen I always get:
IMAP Error in /usr/share/roundcube/program/lib/Roundcube/rcube_imap.php (196): Login failed for user#domain.tls from AA.BBB.CC.DDD. Could not connect to ssl://domail.tls:993: Conection refused
I've been searching around and testing changes on config but no success, can anybody advice me on how to proceed to achieve the functioning of Roundcube.
My current system still works...
What info is suitable for you to have an idea of what could be wrong?

RAML loading in cloudhub taking prolonged time

I created a mule application and able to run/deploy it on my local machine successfully. When I changed the port to Private and deployed to cloudHub, RAML's console is not loading completed.
Same question is also post in below link.
MULE ESB Server: RAML loading for prolonged time
Could someone please help me out.
How big is your RAML? There was bug found where uploads larger than a certain size were timing out and erroring in the backend.
If you watched the network traffic you would see a 504 error being returned to the request.
That particular one got fixed on 27th January so the issue might be solved now?

WHMCS Domain/TLD setup

I have hit past 165 domains entered with pricing, now it wont let me add anymore domains. Whats is a work around for this or what could be the issue? Thanks (Also checked the WHMCS logs and no records of any errors)
WHMCS has no 'limit' to the number of TLDs
If you've reached a level where you cannot add any more then that will be a configuration issue with your server/apache/php - some sort of setting/limit on form submits - check your server logs.
I faced the same issue. The error log showed PHP Warning: Unknown: Input variables exceeded 1000. The solution was to modify the max_input_vars value in php.ini. I can now add the TLDs.

Solving invalid_grant errors

If you're trying to get an access token and facing an invalid_grant error.
You have controled that the all parameters are ok.
It may due to the clock.
Make sure your server's clock is in sync with NTP.
Open a cmd as Administrator
run this command :
w32tm /config /syncfromflags:manual /manualpeerlist:0.pool.ntp.org,1.pool.ntp.org,2.pool.ntp.org,3.pool.ntp.org
net stop w32time
net start w32time
Try again to get an access_token
Hope it help you!
I've spent some hours to find out the cause of the problem...