{% extends "base.html" %} {% block content %} {{ include ('install/steps.html', {active: 'requirements'}) }}
{% include('templates/successerror.html') %}
Welcome to AJAX Guestbook installation wizard
This wizard will guide you to install guestbook in few steps.
{% set requirementserror = php.error ?: apache.error ?: gderror ?: mbstringerror ?: fdcheck.error ?: false %} {% if php.error %} {% else %} {% endif %} {% if apache.error %} {% else %} {% endif %} {% if gderror %} {% else %} {% endif %} {% if mbstringerror %} {% else %} {% endif %} {% if fdcheck.error %} {% else %} {% endif %}
Checking requirements for Guestbook to function properly.
Software Your Version Remarks
PHP {{ php.version }} {{ php.message }} {{ php.message }}
Apache {{ apache.version }} {{ apache.message }} {{ apache.message }}
GD extension check. GD extension is required for the script. Please check if the extension is available and loaded in PHP.ini. GD extension is loaded.
Multibyte String extension check. Multibyte String extension is required for the script. Please check if the extension is available and loaded in PHP.ini. Multibyte String extension is loaded.
Directory and File permissions check. {{ fdcheck.message }} {{ fdcheck.message }}
{% if not requirementserror %} {% do setsession('gbrequirements', 'completed') %}
All the checks are passed successfully. You can now proceed with the installation.
Warning : Your current settings will be overwritten after finishing this installation wizard. If you want to backup the guestbook settings and data please backup the data folder from the server to local machine or elsewhere.
Note: This installation wizard wont impact the guestbook entries data file if present on server.
Proceed {% else %} {% do deletesession('gbrequirements') %}
Please rectify the requirements for the script to proceed with installation.
{% endif %}
{% endblock %}