Jump to content

nizuya

Members
  • Posts

    11
  • Joined

  • Last visited

    Never

Everything posted by nizuya

  1. Final bump...
  2. bump... ?
  3. I'm just trying to use the code to troubleshoot. I'm not really worried about vulnerabilities since it's not live.
  4. In that case, I know that the folder permissions are set to 777. Does anyone know of any php setting or permissions that would cause this?
  5. Bump. Some of that if may be irrelevant. I just want to know if there is anything wrong with the above code. To recap: move_uploaded_file() does NOT return false however the file is NOT moved. Help me out!
  6. or this might be better: if (!is_null($var1) && !is_null($var2)) { Check out this site for info on php Operators: http://www.w3schools.com/php/php_operators.asp Also, rather than using $var = "" for null you should use $var = NULL.
  7. if (($var1 != "") && ($var2 != "")) { }
  8. I'm installing wordpress on my website to manage news content. I will not be the only one updating the content, there will also be other, non-programmer, users. As such I need the admin side web-based media uploading to work properly. The website is hosted on a University virtual server and I am not able to change any setting like in php.ini Part of the website is located in a private https protected folder and part is public. Uploads should be saved in public portion of the website. Permissions on the "uploads" directory of the website are set to 777. I have little experience working with web based uploading. I wrote a simple upload script just to try and troubleshoot the issues: if ($_FILES["file"]["error"] > 0) { echo "Error: " . $_FILES["file"]["error"] . "<br />"; } else { echo "Upload: " . $_FILES["file"]["name"] . "<br />"; echo "Type: " . $_FILES["file"]["type"] . "<br />"; echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />"; echo "Temp location: " . $_FILES["file"]["tmp_name"] . "<br />"; if (file_exists("uploads/" . $_FILES["file"]["name"])) { echo $_FILES["file"]["name"] . " already exists. "; } else { $result = move_uploaded_file($_FILES["file"]["tmp_name"], "uploads/" . $_FILES["file"]["name"]); if (!$result) { echo "Failed"; } else { echo "Saved in: " . "uploads/" . $_FILES["file"]["name"]; } } } The output seems to be successful as the page displays "Saved in: uploads/filename.xyz". However, the file does NOT get copied to the uploads dir. Any idea what could be going on? Thanks, David
  9. Good call, thanks a lot!
  10. My bad I was trying to preview the code and I hit post rather than preview. I edited the post now so that it actually contains my question.
  11. I can't figure out why this code will not work. Please help me out! if (isset($_POST['file'])) { if ($_FILES["file"]["type"] == "image/jpeg") { if ($_FILES["file"]["error"] > 0) { echo "Error: " . $_FILES["file"]["error"] . "<br />"; } else { echo "Upload: " . $_FILES["file"]["name"] . "<br />"; echo "Type: " . $_FILES["file"]["type"] . "<br />"; echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />"; echo "Stored in: " . $_FILES["file"]["tmp_name"]; } } else { echo $_FILES["file"]["type"] . "Invalid file type"; } } else { echo " <form action='index.php' method='POST' enctype='multipart/form-data'> <label>File Path: </label> <input type='file' name='file'/><br /> <input type='submit' name='submit' value='Submit' /> </form>"; } When I click submit it just refreshed the code and the form appears again rather than running the script... I made sure that all max variables are high enough in php.ini... Any ideas?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.