Change permissions of file uploaded by PHP

Posted on

Change permissions of file uploaded by PHP – Here in this article, we will share some of the most common and frequently asked about PHP problem in programming with detailed answers and code samples. There’s nothing quite so frustrating as being faced with PHP errors and being unable to figure out what is preventing your website from functioning as it should like and . If you have an existing PHP-based website or application that is experiencing performance issues, let’s get thinking about Change permissions of file uploaded by PHP.

I have created a small scale CMS for a website I am working on and have a form that uploads image files to be used on the website. It uploads the files successfully but the permissions it sets do not allow the file to be viewed in a browser.

Here is my current PHP code to upload the files

$typepath = $_POST['filetype'];

$target_path = "../../images/uploads/".$typepath."/";

$target_path = $target_path . basename( $_FILES['uploadedfile']['name']);

if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) {
echo "<p>The file ". basename( $_FILES['uploadedfile']['name']).
" has been uploaded</p>n<p>To the directory: <span style="font-weight:bold

Solution :

""&gt

.substr($target_path, 6).""&lt

/span&gt

&lt

/p&gt