2008年08月18日
lHttpRequestについて
llHttpRequestでphp側にデータを送ることができなくて困っています。
http://rpgstats.com/wiki/index.php?title=ExamplellHTTPRequest
のスクリプトとPHPソース
そのまま使っているのですができません(
もちろん 自分のサーバーにURLは変更しましたが)
LSL側
Code:
key requestid; // just to check if we're getting the result we've asked for; all scripts in the same object get the same replies
default
{
touch_start(integer number)
{
requestid = llHTTPRequest("http://my.server.com/my-script.php",
[HTTP_METHOD, "POST",
HTTP_MIMETYPE, "application/x-www-form-urlencoded"],
"parameter1=hello¶meter2=world");
}
http_response(key request_id, integer status, list metadata, string body)
{
if (request_id == requestid)
llWhisper(0, "Web server said: " + body);
}
}
PHP側
Code:
// Only works with PHP compiled as an Apache module
$headers = apache_request_headers();
$objectName = $headers["X-SecondLife-Object-Name"];
$objectKey = $headers["X-SecondLife-Object-Key"];
$ownerKey = $headers["X-SecondLife-Owner-Key"];
$ownerName = $headers["X-SecondLife-Owner-Name"];
$region = $headers["X-SecondLife-Region"];
// and so on for getting all the other variables ...
// get things from $_POST[]
// Naturally enough, if this is empty, you won't get anything
$parameter1 = $_POST["parameter1"];
$parameter2 = $_POST["parameter2"];
echo $ownerName . " just said " . $parameter1 . " " . $parameter2 . "\n";
?>
上記のままでは使えないのでしょうか。
いったい、どのようにすればデータをPHP側に渡すことができるのでしょうか、
目的は
自分のアバター名をPHP側に表示させたいです.
よろしくお願いします。
http://rpgstats.com/wiki/index.php?title=ExamplellHTTPRequest
のスクリプトとPHPソース
そのまま使っているのですができません(
もちろん 自分のサーバーにURLは変更しましたが)
LSL側
Code:
key requestid; // just to check if we're getting the result we've asked for; all scripts in the same object get the same replies
default
{
touch_start(integer number)
{
requestid = llHTTPRequest("http://my.server.com/my-script.php",
[HTTP_METHOD, "POST",
HTTP_MIMETYPE, "application/x-www-form-urlencoded"],
"parameter1=hello¶meter2=world");
}
http_response(key request_id, integer status, list metadata, string body)
{
if (request_id == requestid)
llWhisper(0, "Web server said: " + body);
}
}
PHP側
Code:
// Only works with PHP compiled as an Apache module
$headers = apache_request_headers();
$objectName = $headers["X-SecondLife-Object-Name"];
$objectKey = $headers["X-SecondLife-Object-Key"];
$ownerKey = $headers["X-SecondLife-Owner-Key"];
$ownerName = $headers["X-SecondLife-Owner-Name"];
$region = $headers["X-SecondLife-Region"];
// and so on for getting all the other variables ...
// get things from $_POST[]
// Naturally enough, if this is empty, you won't get anything
$parameter1 = $_POST["parameter1"];
$parameter2 = $_POST["parameter2"];
echo $ownerName . " just said " . $parameter1 . " " . $parameter2 . "\n";
?>
上記のままでは使えないのでしょうか。
いったい、どのようにすればデータをPHP側に渡すことができるのでしょうか、
目的は
自分のアバター名をPHP側に表示させたいです.
よろしくお願いします。
テクスチェンジのHUDについて
モール用のプリムカウンターを探しています
連続するアニメーションの処理
オブジェクトの上にフローティングテキストを出す。
チャットログの盗聴について
椅子に座った後で位置調整できるスクリプト
モール用のプリムカウンターを探しています
連続するアニメーションの処理
オブジェクトの上にフローティングテキストを出す。
チャットログの盗聴について
椅子に座った後で位置調整できるスクリプト
"parameter1=hello¶meter2=world"って何か間違ってません?^^;
http://wiki.secondlife.com/wiki/LlHTTPRequest
コメントありがとうございます
デテクトで名前を取得するのは後で
まず、PHPにデータ取得できるようにしたいんです
そのためにサンプル見ているんですが
なかなかもって来れない状態です
今は hello world って表示されてるんでしょうか?
サーバーが何の反応もしないんだったら、まずはサーバーやPHP、ファイアーウォールとかのセットアップから見直さないとだめですからね^^;
上記スクリプト、自宅のWebサーバ(Apache2/Debian4.0)で動作しました。
但し、あなたのphpスクリプトの先頭に「<?php」が欠けているようですが。。。。
以下のようなメッセージが、ビューアに表示されました。
Object whispers: Web server said: Pastel Flow just said hello world
アバター名(Pastel Flow)はちゃんと、環境変数X-SecondLife-Owner-Nameに入ってますね ^^
ぱすてる 様
ありがとうございます。
sakuraのレンタルサーバでPHP使用できるのを
使ってた場合できなかったのですが
別のサーバでまったく同じファイルを使ったらできました
すべてのサーバでできるとは限らないんですね