PHPコードは正常に動作します。同じサーバー上の html フォームからファイルをアップロードしました。アップロードされたファイルは 40K から 2.0M の範囲だったので、サイズではありません。PHP 5.3 を実行しているサーバーでファイルのアップロードが有効になっている
このような多くの投稿を見つけました (まだ回答なし): https://stackoverflow.com/questions/19710388/using-nsurlsession-to-upload-an-image。
これは、fromData: NSURLSession の代わりに uploadTaskWithRequest:fromFile: を使用して、アップロードが機能していることを確認します
これは、uploadTaskWithRequest ではなく NSURLSessionDataTask です: NSURLSession でデータを受信していません
そして、uploadTaskWithRequest:fromData: 単に機能しないと思われるいくつかの投稿: NSURLSession: uploading assets with background transfer asynchronous upload with NSURLSession will not work but synchronous NSURLConnection does and Upload image from iOS to PHP
HTTP コードを返すようにアプリを作成し、コード 200 を取得しました。アップロード後、サーバーの error_log ファイルには何もありません。すべてが正常に機能しているように見えますが、何が起こっても、ファイルはサーバーに書き込まれません。何がうまくいかないのかを見つけるために他に何ができるか考えていますか?
phpコードは次のとおりです。
<?php
$file='';
$uploaddir='';
////////////////
echo 'file count=', count($_FILES),"\n";
var_dump($_FILES);
echo "\n";
////////////////
if(isset($_FILES['userfile']['name'])){
$uploaddir = './photos/'; //Uploading to same directory as PHP file
$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'); //Not necessary, I was using these
$canupload = ini_get('file_uploads'); //server variables to see what was
$tempdir = ini_get('upload_tmp_dir'); //going wrong.
$maxsize = ini_get('upload_max_filesize');
echo "\r\n" . $_FILES['userfile']['size'] . "\r\n" . $_FILES['userfile']['type'] ;
}
}
?>
iOSコードは次のとおりです。
- (void)uploadImage:(UIImage*)image {
// 0 Define URL
NSData *imageData = UIImageJPEGRepresentation(image, 0.6);
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"http://www.myserver.com/app/photos/uploadPhoto.php"]];
NSString *boundary = @"0xKhTmLbOuNdArY";
NSString *filename = [NSString stringWithFormat:@"someName.jpg"];
NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@",boundary];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:url];
[request setHTTPMethod:@"POST"];
NSURLSessionConfiguration *config = [NSURLSessionConfiguration defaultSessionConfiguration];
NSURLSession *upLoadSession = [NSURLSession sessionWithConfiguration:config delegate:self delegateQueue:nil];
// 4 Create object to put content into...
NSMutableData *body = [NSMutableData data];
[request addValue:contentType forHTTPHeaderField:@"Content-Type"];
[body appendData:[[NSString stringWithFormat:@"\r\n--%@\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
[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]];
//Not used with this:https://stackoverflow.com/questions/20893171/asynchronous-upload-with-nsurlsession-will-not-work-but-synchronous-nsurlconnect/20896632?noredirect=1#comment39074802_20896632
//[request setHTTPBody:body];
__block NSString *stringForText = @"Hola";
///////////////////////////////////////////////////
// 3
self.uploadTask = [upLoadSession uploadTaskWithRequest:request fromData:body completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
// ...
NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse*) response;
int errorCode = httpResponse.statusCode;
NSString *errorStatus = [NSString stringWithFormat:@"%d",errorCode];
NSString *responseString = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSString *totalResponse = [errorStatus stringByAppendingString:responseString];
stringForText = totalResponse;
[self updateView:stringForText];
//UIAlertView *alertme = [[UIAlertView alloc] initWithTitle:@"error" message:totalResponse delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:nil];
//[alertme show];
// 4
self.uploadView.hidden = NO;
[[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:YES];
}];
// 5
[_uploadTask resume];
}
-(void)updateView:(NSString*)texto{
dispatch_sync(dispatch_get_main_queue(), ^{
self.myTextView.text = texto;
});
}
そのフォルダーには 777 のアクセス許可があります。私が言ったように、私はアップロードして、同じphpスクリプトからhtmlフォームを介してそのフォルダーに書き込むことができました。
totalResponse は、http エラー コードの場合は 200、count=0 であり、php ダンプの場合は array(0) {} です。
アプリ内のサーバーからの応答の画像を次に示します。
アップロードされた一時ファイルをエコーした後、次の行を追加しました。
$body = $HTTP_RAW_POST_DATA;
echo "\n REQUEST" . $body;
しかし、私はこれだけを得ました:
file count=1 array(1) { ["user file"]=> array(5) { ["name"]=> string(12) "DrinkCO2.png" ["type"]=> string(9) "image/png" ["tmp_name"]=> string(14) "/tmp/phpxg7oLZ" ["error"]=> int(0) ["size"]=> int(190550) } } file is setTemp file uploaded. REQUEST 190550 image/png