Я пытаюсь загрузить изображение на свой php-сервер, но он не работает. Когда я пытаюсь загрузить файл, экран просто зависает (ожидается, что я использую sendSynchronousRequest, пока не смогу заставить его работать) около минуты, а затем он возвращает пустую строку в качестве ответа. Я работаю над этим больше дня и не могу заставить его работать. Кроме того, изображение никогда не загружается на сервер (я проверил). Заранее спасибо!
// Uploading the image -(IBAction)uploadImage:(id)sender{ [self uploadImage:UIImageJPEGRepresentation(productImageView.image, 90) filename:@"image.jpg"]; } - (BOOL)uploadImage:(NSData *)imageData filename:(NSString *)filename{ // This isn't actually my url btw NSString *urlString = @"http://www.mysite.com/uploadImage.php"; // setting up the request object now NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init]; [request setURL:[NSURL URLWithString:urlString]]; [request setHTTPMethod:@"POST"]; /* add some header info now we always need a boundary when we post a file also we need to set the content type You might want to generate a random boundary.. this is just the same as my output from wireshark on a valid html post */ NSString *boundary = @"---------------------------14737809831466499882746641449"; NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@",boundary]; [request addValue:contentType forHTTPHeaderField: @"Content-Type"]; /* now lets create the body of the post */ NSMutableData *body = [NSMutableData data]; [body appendData:[[NSString stringWithFormat:@"rn--%@rn",boundary] dataUsingEncoding:NSUTF8StringEncoding]]; [body appendData:[@"Content-Disposition: form-data; name=\"userfile\"; filename=\"ipodfile.jpg\"rn" dataUsingEncoding:NSUTF8StringEncoding]]; [body appendData:[@"Content-Type: application/octet-streamrnrn" dataUsingEncoding:NSUTF8StringEncoding]]; [body appendData:[NSData dataWithData:imageData]]; [body appendData:[[NSString stringWithFormat:@"rn--%@--rn",boundary] dataUsingEncoding:NSUTF8StringEncoding]]; // setting the body of the post to the reqeust [request setHTTPBody:body]; // now lets make the connection to the web NSData *returnData = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil]; NSString *returnString = [[NSString alloc] initWithData:returnData encoding:NSUTF8StringEncoding]; UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Responce" message:returnString delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil]; [alert show]; return ([returnString isEqualToString:@"OK"]); }
И мой php-файл:
<?php $uploaddir = ''; // Put in same directory as PHP file for debugging purposes $file = basename($_FILES['userfile']['name']); $uploadfile = $uploaddir . $file; if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) { echo "Your file is called {$file}"; } ?>
Ошибка передачи переменных в PHP-скрипт при загрузке изображений
Это будет работать точно.
Вы пропустили экранирование символов CRLF, например
Меняться от
[body appendData:[[NSString stringWithFormat:@"rn--%@rn",boundary]
в
[body appendData:[[NSString stringWithFormat:@"\r\n--%@\r\n",boundary]
Полное исправление:
/* now lets create the body of the post */ NSMutableData *body = [NSMutableData data]; [body appendData:[[NSString stringWithFormat:@"\r\n--%@\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]]; // note: the preceding "\r\n" may be problematic if the server does not properly implement the "preamble" rule as specified in RFC 2046 [body appendData:[@"Content-Disposition: form-data; name=\"userfile\"; filename=\"ipodfile.jpg\"\r\n" dataUsingEncoding:NSUTF8StringEncoding]]; [body appendData:[@"Content-Type: application/octet-stream\r\n\r\n" dataUsingEncoding:NSUTF8StringEncoding]]; [body appendData:[NSData dataWithData:imageData]]; [body appendData:[[NSString stringWithFormat:@"\r\n--%@--\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];