我在正規網站上的登錄表單。如果用戶使用此表單登錄我的網站,他們應該同時登錄論壇。怎麼做 ?有些人說使用SSI.php,但這個文件給了我另一種形式來向SMF進行身份驗證。如何登錄到SMF論壇從另一種形式不使用SMF登錄表單
回答
好了,所以如果你想只執行相同的POST請求的登錄表單也但從另一個PHP代碼,這個功能可能會感興趣:
大部分代碼是從http://www.jonasjohn.de/snippets/php/post-request.htm
function post_request($url, $data, $referer='') {
// Convert the data array into URL Parameters like a=b&foo=bar etc.
$data = http_build_query($data);
// parse the given URL
$url = parse_url($url);
if ($url['scheme'] != 'http') {
die('Error: Only HTTP request are supported !');
}
// extract host and path:
$host = $url['host'];
$path = $url['path'];
// open a socket connection on port 80 - timeout: 30 sec
$fp = fsockopen($host, 80, $errno, $errstr, 30);
if ($fp){
// send the request headers:
fputs($fp, "POST $path HTTP/1.1\r\n");
fputs($fp, "Host: $host\r\n");
if ($referer != '')
fputs($fp, "Referer: $referer\r\n");
fputs($fp, "Content-type: application/x-www-form-urlencoded\r\n");
fputs($fp, "Content-length: ". strlen($data) ."\r\n");
fputs($fp, "Connection: close\r\n\r\n");
fputs($fp, $data);
$result = '';
while(!feof($fp)) {
// receive the results of the request
$result .= fgets($fp, 128);
}
}
else {
return array(
'status' => 'err',
'error' => "$errstr ($errno)"
);
}
// close the socket connection:
fclose($fp);
// split the result header from the content
$result = explode("\r\n\r\n", $result, 2);
$header = isset($result[0]) ? $result[0] : '';
$content = isset($result[1]) ? $result[1] : '';
// return as structured array:
return array(
'status' => 'ok',
'header' => $header,
'content' => $content
);
}
的數據參數是一個數組如下面
$post_data = array(
'login' => 'yourLogin',
'pass' => 'yourPass',
...
);
,然後只需調用帶有URL的方法(原始形式的行動?):
$result = post_request('http://www.smf-forum1.com/login.php', $post_data);
希望這是你所期望的,如果沒有,我沒有理解這個問題:/
感謝您的回覆。你明白我的理解。我試過這段代碼,但它給了我一個錯誤。錯誤:連接被拒絕(111)。我不知道這是關於smf的錯誤...我正在研究,但也許你有任何建議。 – 2013-02-13 15:53:24
抱歉遲到回覆。我從不嘗試這樣的事情,所以不知道這是什麼錯誤。但我認爲錯誤可能是拒絕您的請求的服務器配置。對不起,但我真的不能幫助更多:無論如何感謝s – ZarkDev 2013-02-18 07:26:14
。我用iframe解決了我的問題:) – 2013-02-18 12:10:09
你可以使用CURL Php來實現這一點。
下面是一個例子
$username="username";
$password="password";
$url="http://www.simplemachines.org/";
$cookie="cookie.txt";
$postdata = "user=".$username."&passwrd=".$password."&cookielength=-1";
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6");
curl_setopt ($ch, CURLOPT_TIMEOUT, 60);
curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 0);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_COOKIEJAR, $cookie);
curl_setopt ($ch, CURLOPT_REFERER, $url);
curl_setopt ($ch, CURLOPT_POSTFIELDS, $postdata);
curl_setopt ($ch, CURLOPT_POST, 1);
$result = curl_exec ($ch);
echo $result;
curl_close($ch);
你能解釋一下嗎?我試過這個代碼。但沒有發生。沒有任何錯誤或什麼。 – 2013-02-14 07:29:09
- 1. SMF論壇登錄iPhone
- 2. 註冊並使用CURL登錄到SMF
- 3. SMF捲曲登錄問題php
- 4. 在Wordpress和SMF中登錄相同
- 5. 如何使用C#登錄vbulletin論壇?
- 6. 如何升級smf(簡單機器論壇)1.1.6到2.0.2?
- 7. 使用CAKEPHP會話將會員自動登錄到SMF
- 8. 使用Java登錄到vbulletin論壇
- 9. 用CURL(C++)登錄論壇
- 10. 與smf論壇集成node.js聊天
- 11. 保持登錄論壇
- 12. Facebook登錄我的論壇
- 13. 用python登錄到vbulletin論壇
- 14. 香草論壇SSO的PHP不登錄到論壇
- 15. C#登錄xenForo論壇使用Webrequests?
- 16. PHP Curl登錄論壇,但不會保持登錄狀態?
- 17. 登錄到phpBB論壇。 Cookie已更改
- 18. 從非論壇頁面登錄ASP.NET論壇
- 19. 如何以編程方式登錄到phpBB論壇?
- 20. 如何從託管cPanel中找到並編輯SMF論壇網站?
- 21. 從相同登錄表單登錄兩種不同類型的最佳方式
- 22. 如何在網頁中使用phpbb登錄(論壇外)
- 23. 的HTTPRequest爲論壇登錄 - 目標C
- 24. 在論壇登錄中未捕獲TypeError
- 25. phpBB論壇自動登錄和搜索
- 26. Wamp MyBB論壇登錄失敗
- 27. 登錄形式
- 28. SMF論壇在所有頁面上顯示404
- 29. 如何使註冊/登錄行動在一種形式
- 30. 登錄不登錄表單工作
通過再現從其他論壇的代碼完全相同的POST請求? – ZarkDev 2013-02-13 12:36:13
是的。我爲這篇文章準備了數據。只有3個參數。 – 2013-02-13 12:40:43