-2

私は同じ問題を抱えている多くの人々を読みました、すべてが似ていて私のサーバー設定に関係していました、画像ディレクトリが755権限を持っていることを確認しました、そして何らかの理由で私のユーザーサブフォルダが777に設定されているのを見て、私は作成しましたphp.iniファイル、upload_max_filesizeが適切に設定されていること、およびphp.iniが適切に設定されていることを確認しました。私は多くの異なるチュートリアルからいくつかの異なるコーディング手法を試しましたが、すべて同じエラーが出力されました。

これは私のNSlogのエラーです

myproject[11784:907] test <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>500 Internal Server Error</title>
</head><body>
<h1>Internal Server Error</h1>
<p>The server encountered an internal error or
misconfiguration and was unable to complete
your request.</p>
<p>Please contact the server administrator,
 webmaster@myproject.com and inform them of the time the error occurred,
and anything you might have done that may have
caused the error.</p>
<p>More information about this error may be available
in the server error log.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>

これが私のObjective-cコードです

- (void) imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
[self  dismissViewControllerAnimated:YES completion:NULL];

NSData *dataImage = UIImageJPEGRepresentation(image.image, 0.8f);
NSString *urlString = @"http://www.myproject.com/myphpscript.php";
NSString *filename = [NSString stringWithFormat:@"%@.jpg", [MyClass str]];
NSMutableURLRequest* request= [[NSMutableURLRequest alloc] init];
[request setURL:[NSURL URLWithString:urlString]];
[request setHTTPMethod:@"POST"];
NSString *boundary = @"---------------------------14737809831466499882746641449";
NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@",boundary];
[request addValue:contentType forHTTPHeaderField: @"Content-Type"];
NSMutableData *postbody = [NSMutableData data];
[postbody appendData:[[NSString stringWithFormat:@"\r\n--%@\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
[postbody appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"image\"; filename=\"%@.png\"\r\n", filename] dataUsingEncoding:NSUTF8StringEncoding]];
[postbody appendData:[@"Content-Type: application/octet-stream\r\n\r\n" dataUsingEncoding:NSUTF8StringEncoding]];
[postbody appendData:[NSData dataWithData:dataImage]];
[postbody appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"%@\"\r\n\r\n", @"email"] dataUsingEncoding:NSASCIIStringEncoding]];
[postbody appendData:[[NSString stringWithFormat:@"%@",[MyClass str]] dataUsingEncoding:NSASCIIStringEncoding]];
[postbody appendData:[[NSString stringWithFormat:@"\r\n--%@--\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
[request setHTTPBody:postbody];
NSData *returnData = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
NSString* returnString = [[NSString alloc] initWithData:returnData encoding:NSUTF8StringEncoding];
NSLog(@"test %@",returnString);
}

と私のPHP

<?php
// removed connection 
$mysqli = new mysqli($host, $username, $password, $database);
if ($stmt = $mysqli->prepare("INSERT INTO `user` SET imagepath=? WHERE email=?")) 
{
    $stmt->bind_param('ss', $albumname, $email);

$uploaddir = 'images/users/';
$file = basename($_FILES['userfile']['name']);
$uploadfile = $uploaddir . $file;

if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {

}
$albumname = $uploadfile;
    $email = $_POST['email'];
    $stmt->execute();
    $stmt->close(); 
    }


else {
    printf("Prepared Statement Error: %s\n", $mysqli->error);
}

$mysqli->close();
?>
4

2 に答える 2

0

エラー 500 はサーバー側のエラーです。

サーバーからサーバー自体へのアップロードを試すことをお勧めします。そうすれば、何が問題なのかについてより多くの情報を得ることができます。また、Web サーバー、nginx、appache、またはこれまでに実行したものからのエラー ログを確認してください。エラーの原因を見つけることができます。

于 2013-01-31T07:28:24.050 に答える
0

コードだけでは 500 エラーが何であるかはわかりませんが、PHP ini ファイルでエラー ログが有効になっていることを確認し、ログ ファイルを確認することを強くお勧めします。ほとんどの場合、500 エラーは PHP エンジンのランタイム エラーが原因で発生し、ログ ファイルに出力されます。display_errors が有効になっている場合は、ブラウザに直接出力されます。

ログ ファイルを読めば、10 回中 9 回のエラーは簡単に修正できます。

于 2013-01-31T07:29:33.660 に答える