{{t('If you plan to upgrade from an older version of Chamilo, you might want to')}}
<a
href="/main/documentation/changelog.html"
target="_blank"
v-text="t('have a look at the changelog')"
/>
{{t('to know what\'s new and what has been changed.')}}
</p>
<h2
class="install-subtitle mb-8"
v-text="t('Server requirements')"
/>
<Message
v-if="!installerData.stepData.timezone"
:closable="false"
severity="warn"
>
{{t('We have detected that your PHP installation does not define the date.timezone setting. This is a requirement of Chamilo. Please make sure it is configured by checking your php.ini configuration, otherwise you will run into problems. We warned you!')}}
v-text="t('Recommended settings for your server configuration. These settings are set in the php.ini configuration file on your server.')"
/>
<divclass="table-responsive">
<tableclass="requirements-list">
<thead>
<tr>
<th
class="requirements-item"
v-text="t('Setting')"
/>
<th
class="requirements-recommended"
v-text="t('Recommended')"
/>
<th
class="requirements-value"
v-text="t('Currently')"
/>
</tr>
</thead>
<tbody>
<tr
v-for="({ title, recommended, current }, i) in installerData.stepData.phpIni"
:key="i"
>
<td
class="requirements-item"
v-text="title"
/>
<tdclass="requirements-recommended">
<Tag
severity="success"
:value="recommended"
/>
</td>
<tdclass="requirements-value">
<Tag
:severity="current.severity"
:value="current.value"
/>
</td>
</tr>
</tbody>
</table>
</div>
<h4
class="install-subtitle mb-4"
v-text="t('Directory and files permissions')"
/>
<p
v-t="'Some directories and the files they include must be writable by the web server in order for Chamilo to run (user uploaded files, homepage html files, ...). This might imply a manual change on your server (outside of this interface).'"
class="mb-4"
/>
<divclass="table-responsive">
<tableclass="requirements-list">
<tbody>
<tr
v-for="({item, status}, i) in installerData.stepData.pathPermissions"
{{t('Some files or folders don\'t have writing permission. To be able to install Chamilo you should first change their permissions (using CHMOD). Please read the')}}
v-html="t('Because the <code>newscorm</code> and <code>exercice</code> directories were renamed to <code>lp</code> and <code>exercise</code> respectively, is necessary to delete or rename to <code>newscorm_old</code> and <code>exercice_old</code>.')"
/>
<ulclass="list-disc list-inside">
<li
v-for="(deprecatedToRemove, i) in installerData.stepData.deprecatedToRemove"