Weird error when trying to load a website

shir.tech

Registered
Jan 25, 2016
2
1
3
israel
cPanel Access Level
Website Owner
My VPS comes with a cpanel/whm bundle running on centos 6.7 machine.

  • CENTOS 6.7 x86_64 vmware – server
  • WHM 11.52.2 (build 5)
I have configured nameservers, DNS, ioncube , mbstrings settings.

When trying to load a wordpress website - it works just fine,
When trying to load a website with a backend cms (mysqli) - I get this weird error on my browser:

"Not established language system, please contact with the treatment system."

this website was migrated from another server, I created a clone database and granted all priviliges , the first time it gave me some errors regarding mb.strings enconding that I managed to solve via php configuration.

any help ?
 
Last edited by a moderator:

cPanelMichael

Administrator
Staff member
Apr 11, 2011
47,880
2,258
463
Hello :)

Do you notice any additional output to /usr/local/apache/logs/error_log when this happens? You can monitor the Apache error log with a command such as:

Code:
tail -f /usr/local/apache/logs/error_log
Also, if this is a PHP script, review the error_log file within the directory the script is located in to see if there's any additional output.

Thank you.
 

shir.tech

Registered
Jan 25, 2016
2
1
3
israel
cPanel Access Level
Website Owner
Code:
[email protected] [~]# tail -f /usr/local/apache/logs/error_log
[Tue Jan 26 21:59:52 2016] [error] [client 141.101.98.105] File does not exist: /home/mydomain/public_html/favicon.ico, referer: [URL='http://www.mydomain.com/?menu
[Tue Jan 26 21:59:52 2016] [error] [client 141.101.98.105] File does not exist: /home/mydomain/public_html/404.shtml, referer: [URL='http://www.mydomain.com/?menu
[Tue Jan 26 22:05:51 2016] [notice] Graceful restart requested, doing restart
[Tue Jan 26 22:05:52 2016] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Tue Jan 26 22:05:52 2016] [notice] Apache/2.2.31 (Unix) mod_ssl/2.2.31 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 configured -- resuming normal operations
[Tue Jan 26 22:07:40 2016] [notice] Graceful restart requested, doing restart
[Tue Jan 26 22:07:41 2016] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Tue Jan 26 22:07:41 2016] [notice] Apache/2.2.31 (Unix) mod_ssl/2.2.31 OpenSSL/1.0.1e-fips mod_bwlimited/1.4 configured -- resuming normal operations
[Tue Jan 26 22:08:17 2016] [error] [client 141.101.98.105] File does not exist: /home/mydomain/public_html/favicon.ico, referer: [URL='http://www.mydomain.com/
[Tue Jan 26 22:08:17 2016] [error] [client 141.101.98.105] File does not exist: /home/mydomain/public_html/404.shtml, referer: [URL='http://www.mydomain.com
nothing spotted.
any other suggestion ?
 
Last edited by a moderator:

bloatedstoat

Well-Known Member
Jun 14, 2012
184
24
68
Victoria, Australia
cPanel Access Level
Root Administrator
I suspect the "backend CMS" is a custom CMS Michael, although pure conjecture of course.

I also wonder if this custom CMS uses the php mysqli extension over mysql and the mysqli extension is not available on the new server? Your wordpress sites may be configured to use mysql rather than mysqli and that's why they work.

Has the OP tried a simple phpinfo() script to see if the mysqli extension is available?

Given it's a custom CMS it could be why the error message is an obscure one.

All of this is pure guesswork of course.