Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

PHP Upload

Status
Not open for further replies.

WJProctor

Programmer
Joined
Jun 20, 2003
Messages
151
Location
GB
Hi there, im trying to create an error report page on my site, and want users to be able to upload screenshots. Ive tired doing loads of stuff. Heres what im doing at the mo.

172) if (copy($Screenshot, "uploads/$Screenshot_name")){
173) print("OK\n");
174) } else {
175) print("No\n");
176) }
177) unlink($Screenshot);

everytime i try to upload though i just get these errors.

Warning: copy(D:\\KitChecker.doc): failed to open stream: No such file or directory in /home/ebmis/public_html/ErrorReporter.php on line 174

Warning: unlink(D:\\KitChecker.doc): No such file or directory in /home/ebmis/public_html/ErrorReporter.php on line 179

Im really stuck ive tried all sorts and looked all over the net. Can anyone help me out. Thanks very much for anyone who does.

Regards

JP
 
I couldnt tell you to be honest, i was just as confused by the "D://" ive never seen that before. Maybe its the server im running it on.!!
 
A couple of observations.

First, you're linenumbers and those of the error messages do not line up. The first error, which lists problems with copy, appears on line 174. Your numbering places it on line 172.

Second, the copy command invocation in the code you listed uses the variable $Screenshot as one of its parameters. $Screenshot is a variable you likely have instantiated in your code. What value did you set it to?

Third, have you taken a look at the PHP online manual section on handling file uploads? It has a lot of good information and examples.
Want the best answers? Ask the best questions: TANSTAAFL!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top