Latest JAS v1.1.0
144 plugins online

Installation / PHP

JAS works well with any PHP version starting from 5.4, it is however recommended to run the latest stable PHP version. JAS has also been confirmed to work with PHP 7 however it's not yet recommended for production usage.

PHP.ini

The only requirements JAS has on PHP configuration is that "short tags" are enabled and the "mbstring" extension is loaded. Other than that no special PHP configuration options are needed. It may be wise however to review the file upload configurations options and load some database, compression and image extensions.

Options
php.ini
short_open_tagshort_open_tag = On  ;required

file_uploads = On
upload_max_filesize =10M
post_max_size =10M


Extensions
php.ini
extension=mbstring.so  ;required
extension=mysqli.so
extension=bz2.so
extension=zip.so
extension=zlib.so
extension=gd.so
extension=exif.so
Extensions in Windows
php.ini
extension=php_mbstring.dll  ;required
extension=php_mysqli.dll
extension=php_bz2.dll
extension=php_zip.dll
extension=php_zlib.dll
extension=php_gd.dll
extension=php_exif.dll


PEAR/PECL

TAR

If you want "TAR" support for gz/bz2 archive you want to install Archive_Tar from PEAR:
Install TAR support
Bash
$ pear install Archive_Tar


RAR

If you want "RAR" support archive you want to install rar from PECL run the following command and enable to module in the php.ini:
Install RAR support
Bash
$ pecl install rar
Extensions
php.ini
extension=rar.so


Memcached / Redis

JAS supports Memcached and Redis for (Data object) caching. To install Memcached/Redis PHP support from PECL run the following command and enable to module in the php.ini:
Install Memcached support
Bash
$ pecl install memcache
$ pecl install memcached
$ pecl install redis
Extensions
php.ini
extension=memcache.so
extension=memcached.so
extension=redis.so

Comments (0)