I want to install aroundme but I get this error:
system message:
Fatal error: Call to undefined function: ftp_chmod() in /home/roselab/public_html/aroundme/install/installer/header.inc.php on line 176
here are lines 175 to 180:
Any ideas?
system message:
Fatal error: Call to undefined function: ftp_chmod() in /home/roselab/public_html/aroundme/install/installer/header.inc.php on line 176
here are lines 175 to 180:
PHP Code:
$dir = DIR_NAME . "aroundme/components/core/config/";
if(!ftp_chmod($conn, 0777, $dir)) {
echo $lang['error_fail_permission'].$dir;
ftp_close($conn);
return false;
}
Comment