Jump to content

kingzasz

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by kingzasz

  1. kingzasz

    Fopen

    I can't get fopen to work. I keep getting this error: >Warning: fopen(test.pdf): failed to open stream: Permission denied in /home/zimmer/public_html/pdf/fpdf.php on line 1044 Any ideas?
  2. Thanks jesse, that did it! woooot Thank you all you guys for your suggestions. And thanks for the quick responses. Have a great day.
  3. My file upload script is not working. Can anyone help? This is only part of my script, but I think it's the only part with problems: >$uploadDir = '/uploadedfiles/'; $uploadFile = $uploadDir . $_FILES['file']['name']; if (move_uploaded_file($_FILES['file']['tmp_name'], $uploadFile)) { print "File is valid, and was successfully uploaded. "; } else { print "There was an error uploading the file. Please try again."; print_r($_FILES); exit; } This is the error I get, as well as my programmed error Warning: move_uploaded_file(/uploadedfiles/1210_14_2_web.jpg): failed to open stream: No such file or directory in /home/tcecom/public_html/upload2.php on line 56 Isn't this a problem with the server. Do I need to change permissions? Thanks
×
×
  • Create New...