Add a check for the php5-json extension (some Ubuntu based linux don't have it installed automatically). Reported by Mario.

This commit is contained in:
Sébastien Lucas 2014-05-28 16:05:33 +02:00
부모 04dfef3222
커밋 81fbe584db
1개의 변경된 파일12개의 추가작업 그리고 0개의 파일을 삭제

파일 보기

@ -85,6 +85,18 @@
?>
</h4>
</article>
<article class="frontpage">
<h2>Check if Json is properly installed and loaded</h2>
<h4>
<?php
if (extension_loaded('json')) {
echo "OK";
} else {
echo "Please install the php5-json extension and make sure it's enabled";
}
?>
</h4>
</article>
<article class="frontpage">
<h2>Check if mbstring is properly installed and loaded</h2>
<h4>