[PHP-users 15759]sessionの受け渡しについて
mat
matphpml @ hotmail.com
2003年 6月 9日 (月) 19:50:13 JST
matです。
PHP4.3.1
Apache1.3.27
Linux
上記の環境でセッションを使っているのですが、PHPを.htaccessを使ってCGIと
して動くようにしてあるファイル(a.php)に通常のモジュールとして動いている
PHP(b.php)からリンクを張ってやると以下のようなエラーメッセージが出てきて
セッションの受け渡しがうまくいかないのですが、ご教授願えないでしょうか?
---- エラーメッセージ Start -----
Warning: session_start() [function.session-start]:
open(/tmp/sess_a5952f76f42db707c6ffee20ab59ff01, O_RDWR) failed:
Permission denied (13) in /home/hoge/public_html/hoge.php on line 3
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at
/home/hoge/public_html/hoge.php:3) in /home/hoge/public_html/hoge.php on
line 3
---- エラーメッセージ End -----
---- a.php start ----
#!/usr/local/bin/php
<?
session_start();
session_register("session_data");
セッション変数を使った処理
?>
---- a.php end ----
---- b.php start ----
<?
session_start();
session_register("session_data");
セッション変数を使った処理
?>
---- b.php end ----
よろしくお願いします
--
mat <matphpml @ hotmail.com>
PHP-users メーリングリストの案内