を使用しているときにファイルパスに問題がありopendir()
ます。次の警告が表示されます。
PHP 警告: opendir(/uploads/users/405/images/profile/profilepic/) [function.opendir]: dir を開けませんでした: No such file or directory in /home/my_folder/public_html/models/photos.php on line 1059
の 1059 行にphotos.php
は次の内容があります。
if ( ( $handle = opendir( $profile_pic_path ) ) ) { // do stuff }
どこ:
$profile_pic_path = '/uploads/users/405/images/profile/profilepic/';
いくつかの異なることを試しましたが、動作しません (エラー ログに PHP の警告メッセージが表示され続けます)。
私は何を間違っていますか?