Why am I getting an undefined index loading an image in php from iOS but not from Html?

This is not a duplicate because the problem was NOT an undefined index.

I initially had a problem from my iOS application, but I created an html form. Now it works from html, but not from iOS.

Form Code:

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> <form enctype="multipart/form-data" action="uploadPhoto.php" method="POST"> Choose a file to upload: <input name="userfile" type="file" /><br /> <input type="submit" value="Upload File" /> </form> </body> </html> 

and php code for uploadPhoto.php:

 <?php //////////////// echo 'file count=', count($_FILES),"\n"; var_dump($_FILES); echo "\n"; //////////////// $uploaddir = './photos/'; if(isset($_FILES['userfile']['name'])){ $file = basename($_FILES['userfile']['name']); echo "file is set"; } $uploadFile = $file; $randomNumber = rand(0, 99999); $newName = $uploaddir . $uploadFile; if (is_uploaded_file($_FILES['userfile']['tmp_name'])) { echo "Temp file uploaded. \r\n"; } else { echo "Temp file not uploaded. \r\n"; } if (move_uploaded_file($_FILES['userfile']['tmp_name'], $newName)) { $postsize = ini_get('post_max_size'); $canupload = ini_get('file_uploads'); $tempdir = ini_get('upload_tmp_dir'); $maxsize = ini_get('upload_max_filesize'); echo "\r\n" . $_FILES['userfile']['size'] . "\r\n" . $_FILES['userfile']['type'] ; } ?> 

And I get this from browser download:

file count = 1 array (1) {["uploaded file"] => array (5) {["name"] => string (9) "Koko2.jpg" ["type"] => string (10) " image / jpeg "[" tmp_name "] => string (14)" / tmp / phpH6pnPi "[" error "] => int (0) [" size "] => int (72727)}} Temp file not loaded.

I have 777 for this photo. I repeated and realized: 1 for file_uploads 8M for post_max_size 128M for upload_max_filesize

The server error log states: User undefined index in uploadPhoto.php lines 18, 24 and 29, which refer to each mention of $ _FILES ['userfile'] ['name'].

Here is the iOS code:

NSData * imageData = UIImageJPEGRepresentation (image, 0.6);

 // 0 Define URL NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"http://www.myservers.com/app/photos/uploadPhoto.php"]]; // 1 Create session configuration NSURLSessionConfiguration *config = [NSURLSessionConfiguration defaultSessionConfiguration]; config.HTTPMaximumConnectionsPerHost = 1; // 2 Create session & variables NSURLSession *upLoadSession = [NSURLSession sessionWithConfiguration:config delegate:self delegateQueue:nil]; // 3 Create request & body & parameters NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:url]; [request setHTTPMethod:@"POST"]; // 4 Create object to put content into... NSMutableData *body = [NSMutableData data]; // 5 Create body of the request to put into the object NSString *boundary = @"0xKhTmLbOuNdArY"; NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@",boundary]; [request addValue:contentType forHTTPHeaderField:@"Content-Type"]; [body appendData:[[NSString stringWithFormat:@"\r\n--%@\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]]; NSString *filename = [NSString stringWithFormat:@"someName.jpg"]; [body appendData:[[NSString stringWithString:[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"userfile\" filename=\"%@\"\r\n",filename]] dataUsingEncoding:NSUTF8StringEncoding]]; //[body appendData:[@"Content-Type: application/octet-stream\r\n\r\n" dataUsingEncoding:NSUTF8StringEncoding]]; [body appendData:[@"Content-Type: image/jpeg\r\n\r\n" dataUsingEncoding:NSUTF8StringEncoding]]; [body appendData:[NSData dataWithData:imageData]]; [body appendData:[[NSString stringWithFormat:@"\r\n--%@--\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]]; [request setHTTPBody:body]; // 3 self.uploadTask = [upLoadSession uploadTaskWithRequest:request fromData:body]; // 4 self.uploadView.hidden = NO; [[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:YES]; // 5 [_uploadTask resume]; 

It does not work only from my ios code. I could not find a similar problem in 11 other answers mentioned in SO.

What could be the problem?

+2
php ios image-uploading
Aug 02 '14 at 18:17
source share

No one has answered this question yet.

See similar questions:

1111
"Note: undefined variable", "Note: undefined index" and "Note: undefined offset" using PHP
7
asynchronous loading using NSURLSession will not work, but synchronous NSURLConnection
0
Upload image from iOS to PHP

or similar:

2414
Why shouldn't I use mysql_ * functions in PHP?
2335
Removing an element from an array in PHP
2263
How to get a thumbnail of a YouTube video using the YouTube API?
2024
How do you parse and process HTML / XML in PHP?
1624
How do I get PHP errors?
1475
Convert HTML + CSS to PDF using PHP?
1111
"Note: undefined variable", "Note: undefined index" and "Note: undefined offset" using PHP
1085
How to get client IP address in PHP
978
Get full url in PHP
one
PHP loads 0 bytes of image



All Articles