Please check the following system requirements:
Used For | Function | Status |
---|
PHP-GD extensions | Edit the image size gd_info, getimagesize, etc | OK |
Write a file to root directory | WRITE: root/test.file Filesystem: fwrite, file_get_contents, etc | OK |
Write a file to class directory | WRITE: root/system/class/test.file Filesystem: fwrite, file_get_contents, etc | OK |
Make projects directory | MD: root/projects/test/folder/ Filesystem: mkdir | OK |
|
Write a file to projects directory | WRITE: root/projects/test/folder/test.file Filesystem: fwrite, file_get_contents, etc | OK |
Create Zip file | ZIP: root/projects/test/folder/test.zip Zip: ZipArchive | OK |
Unzip a file to Zip folder | UNZIP: 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