ID: 40214 Updated by: [EMAIL PROTECTED] Reported By: support at vikoshosting dot com -Status: Open +Status: Bogus Bug Type: Filesystem function related Operating System: Linux Kernel version 2.6.9-42.0. PHP Version: 5CVS-2007-01-24 (snap) New Comment:
Sorry, but your problem does not imply a bug in PHP itself. For a list of more appropriate places to ask for help using PHP, please visit http://www.php.net/support.php as this bug system is not the appropriate forum for asking support questions. Due to the volume of reports we can not explain in detail here why your report is not a bug. The support channels will be able to provide an explanation for you. Thank you for your interest in PHP. Previous Comments: ------------------------------------------------------------------------ [2007-01-24 04:40:23] support at vikoshosting dot com Description: ------------ When I create a file using the FOPEN function and then try to change permissions on the file it says it cant be done because Bad File Descriptors. PHP version 5.1.6 Reproduce code: --------------- $conn_id = chmod_open(); $ourFileName = "testFile.txt"; $ourFileHandle = fopen($ourFileName, 'w') or die("can't open file"); fclose($ourFileHandle); function chmod_open() { // Use your own FTP info $ftp_user_name = 'vikoshos'; $ftp_user_pass = 'frath0pr'; $ftp_root = '/'; $ftp_server = 'localhost'; $conn_id = ftp_connect($ftp_server); $login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass); return $conn_id; } function chmod_file($conn_id, $permissions, $ftpath) { echo "$ftpath"; if (ftp_site($conn_id, 'CHMOD ' . $permissions . ' ' . $ftp_root . $ftpath) !== false) { return TRUE; } else { return FALSE; } } chmod_file($conn_id, 0777, $ourFileName); Expected result: ---------------- Change the file mod to 777 Actual result: -------------- Warning: ftp_site() [function.ftp-site]: Could not change perms on newfile.txt: Bad file descriptor in code.php on line 168 ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=40214&edit=1