{% extends 'sections/visitors/layout.html' %}
{% set menu = 'diagnostics' %}
{% block content %}
| Is the core up-to-date? |
{% if current_version == latest_version %}
Yes
{% else %}
No
{% endif %}
|
| Are the script files up-to-date? |
{% if scripts == 'Yes' %}
Yes
{% else %}
No
{% endif %}
|
| What is the IP address of the server? |
{{ ip_address }} |
| Does the server have a valid license? |
{% if license == 'Pass' %}
Yes
{% else %}
No
{% endif %}
|
| Does
{% if Panel == 'CWP' %}
/usr/local/cwpsrv/var/services/users/development
{% else %}
/etc/development
{% endif %}
exists?
|
{% if development %}
Yes
{% else %}
No
{% endif %}
|
| What is the value of suEXEC in
{% if Panel == 'cPanel' %}
WHM ->
{% endif %}
Fantastico F3 -> Options? |
{% if suexec %}
On
{% else %}
Off
{% endif %}
|
| What is the value of $HOME? |
{{ home }} |
| What is the total disk quota? |
{% if disk_total == null %}
{% else %}
{{ disk_total / 1000000 }} MB
{% endif %}
|
| What is the available disk quota? |
{% if disk_total == null %}
{% else %}
{{ disk_available / 1000000 }} MB
{% endif %}
|
| What is the total MySQL quota? |
{% if mysql_total == null %}
{% else %}
{{ mysql_total }}
{% endif %}
|
| What is the available MySQL quota? |
{% if mysql_total == null %}
{% else %}
{{ mysql_available }}
{% endif %}
|
| Debug Mode |
{% if development %}
On
{% else %}
Off
{% endif %}
|
{% if domains != null %}