Step 1 ~ System Requirements

20% Complete

 Checking Your Server

Please check the following system requirements:

Used ForFunctionStatus
PHP-GD extensionsEdit the image size
gd_info, getimagesize, etc
OK
Write a file to root directoryWRITE: root/test.file
Filesystem: fwrite, file_get_contents, etc
OK
Write a file to class directoryWRITE: root/system/class/test.file
Filesystem: fwrite, file_get_contents, etc
OK
Make projects directoryMD: root/projects/test/folder/
Filesystem: mkdir
OK
Write a file to projects directoryWRITE: root/projects/test/folder/test.file
Filesystem: fwrite, file_get_contents, etc
OK
Create Zip fileZIP: root/projects/test/folder/test.zip
Zip: ZipArchive
OK
Unzip a file to Zip folderUNZIP: root/outputs/test/zip/test.txt
Filesystem: fwrite, file_get_contents, etc
OK


Changing Permission Files/Folder

Linux/OSX

Permissions are used 777 by including folder and subfolders (option -R / recursive). Run your terminal or ssh, type this command:

$ sudo su
$ cd /hermes/walnacweb05/walnacweb05ad/b1506/pow.bbeautiful/htdocs
$ chmod -R 777 *
Windows

Run Window Explorer, go to /hermes/walnacweb05/walnacweb05ad/b1506/pow.bbeautiful/htdocs/dev855 folder.Right-click the folder then selecting Properties from the appearing context menu. In Tab General, unchecked read-only then click OK


Enabling PHP-GD Extensions

Check if in your php.ini file has the following line:

;extension=gd

if exists, change it to:

extension=gd
and restart apache

Enabling PHP-Zip Extensions

Check if in your php.ini file has the following line:

;extension=zip

if exists, change it to:

extension=zip
and restart apache