{% extends 'sections/visitors/layout.html' %} {% set menu = 'diagnostics' %} {% block content %}

Diagnostics

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 %} {% if Panel == 'cPanel' %} {% endif %} {% for key,value in domains %} {% if value[0] == ip_address %} {% if Panel == 'cPanel' %} {% endif %} {% else %} {% if Panel == 'cPanel' %} {% endif %} {% endif %} {% endfor %}
Domain Name IP AddressesPHP Version
{{ key }} {{ value[0] }}{{ value[1] }}{{ key }} {{ value[0] }}{{ value[1] }}
{% if Panel == 'cPanel' %} {% for keys,values in lists %} {% for key,items in values %} {% for key,modules in items %} {% for key,module in modules %} {% endfor %} {% endfor %} {% endfor %}
{{ keys }}
{{ key }}
{{ module }}
{% endfor %} {% endif %} {% endif %}

{% endblock %}