Dün, ben php sayfası soket sonrası dosya veriler hakkında bir soru sordu.
Bağlantı burada
Upload and POST file to PHP page
Ben yolunu izlediğinizde, benim kod değişti.
char *str="POST /path/upload_file.php HTTP/1.0 \n Host: 00.00.00.00 \n Content-Disposition: name=2.jpg;filename=2.jpg\r " ;
write(sockfd, buf, filestat.st_size);
sprintf(send1,"%s%s\r\n",str,buf);
retval= send(sockfd,send1,sizeof(send1),0);
Ben Programı çalıştırdığınızda, alabilirsiniz
result: 501 Method Not Implemented
Method Not Implemented
to /index.html not supported.Invalid method in request
Apache/1.3.39 Server at localhost Port 80
I guess it's possible :
1. apache can't support something?
(my apache don't support ssl)
2. http protocol is not details?
3. other?
Çok teşekkürler.