Функция копирования PHP, не удалось открыть поток: Отказано в разрешении - PullRequest
5 голосов
/ 06 апреля 2011

Я пытаюсь загрузить изображение на сервер, ниже приведен скрипт, который я нашел в Интернете и который работал локально, когда я развернул код и базу данных, которая выдает мне сообщение «не удалось открыть поток. Отказано в доступе».

<?php
//define a maxim size for the uploaded images in Kb
 define ("MAX_SIZE","5000"); 

//This function reads the extension of the file. It is used to determine if the file  is an image by checking the extension.
 function getExtension($str) {
         $i = strrpos($str,".");
         if (!$i) { return ""; }
         $l = strlen($str) - $i;
         $ext = substr($str,$i+1,$l);
         return $ext;
 }

//This variable is used as a flag. The value is initialized with 0 (meaning no error  found)  
//and it will be changed to 1 if an errro occures.  
//If the error occures the file will not be uploaded.
 $errors=0;

    //reads the name of the file the user submitted for uploading
    $image=$_FILES['image']['name'];

    //if it is not empty
    if ($image) 
    {
    //get the original name of the file from the clients machine
        $filename = stripslashes($_FILES['image']['name']);
    //get the extension of the file in a lower case format
        $extension = getExtension($filename);
        $extension = strtolower($extension);
    //if it is not a known extension, we will suppose it is an error and will not  upload the file,  
    //otherwise we will do more tests
 if (($extension != "jpg") && ($extension != "jpeg") && ($extension != "png")) 
        {
        //print error message
            echo '<h1>Nepoznata vrsta fajla!</h1>';
            $errors=1;
        }
        else
        {
//get the size of the image in bytes
 //$_FILES['image']['tmp_name'] is the temporary filename of the file
 //in which the uploaded file was stored on the server
 $size=filesize($_FILES['image']['tmp_name']);

//compare the size with the maxim size we defined and print error if bigger
if ($size > MAX_SIZE*1024)
{
    echo '<h1>To large file!</h1>';
    $errors=1;
}

//we will give an unique name, for example the time in unix time format
$image_name=time().'.'.$extension;
//the new name will be containing the full path where will be stored (images folder)
$newname="Content/Images/".$image_name;
//we verify if the image has been uploaded, and print error instead
//$copied = copy($_FILES['image']['tmp_name'], $newname);

$copied = copy('$_FILES['image']['tmp_name'], $newname);

//echo $_FILES['image']['tmp_name'].'<br/>';
//echo $_FILES['image']['name'];

if (!$copied) 
{
    echo '<h1>Error occurred!</h1>';
    $errors=1;
}}}


//If no errors registred, print the success message
 /*if(isset($_POST['Submit']) && !$errors) 
    {
    echo "<h1>You have successfully uploaded image.</h1>";
}*/

 ?>

Я видел некоторых ответчиков из stackoverflow, таких как answers1 и answer2 , но я не уверен, как это сделать? Есть ли другие предложения?

спасибо.

Ответы [ 4 ]

14 голосов
/ 07 апреля 2011

Убедитесь, что права доступа к папке, в которой вы сохраняете файл (tmp), установлены на 777.Введите chmod -R 777 path на своем терминале

1 голос
/ 05 февраля 2017

, если вы также не можете создать файл в папке назначения и уже установили для него разрешение 755, проверьте следующее:

Если ваш файл: /path/to/test-in.txt

У вас должно быть разрешение X для:

  • / path
  • / path / to
  • и разрешение на чтение в / path / to / test-in.txt

Проверьте подробности здесь fopen () не может открыть поток: разрешение запрещено, но разрешения должны быть действительными

1 голос
/ 31 декабря 2014

Папка, которую вы пытаетесь скопировать, должна иметь те же права доступа, что и ваш пользователь PHP. (Пользователь apache, если ваш сервер apache)

. /
drwxrwxr-x root root Приложение
drwxrwxr-x apache apache FilesystemDir

0 голосов
/ 07 апреля 2011

Ваша команда копирования имеет синтаксические ошибки:

$copied = copy('$_FILES['image']['tmp_name'], $newname);
               ^--- extra quote?

Если вы пытаетесь сделать что-то вроде

$copied = copy("$_FILES['image']['tmp_name']", $newname);

, она все равно не будет работать.Парсер PHP не готов, и увидит это как

$_FILES['image'] -> array
['tmp_name'] -> string

и попытается сделать

$copied = copy("Array['tmp_name']" ....);

И в любом случае, вы должны использовать move_uploaded_file () для обработки перемещения загруженных файлов., а не copy().У m_u_l есть дополнительные проверки, чтобы убедиться, что никто не вмешивался в файл во время между завершенной загрузкой и вашим скриптом, пытающимся его переместить.

...