No.10129 投稿時間:2003年05月15日(Thu) 06:44 投稿者名:マック URL:
PHPをこちらのサイトで参考にして、インストールしました!
しかし、IEで確認してみると、エラーらしきものがでてます!どういう意味かご存知の方
よろしくお願いします!
--------------------------------------------------------------
Notice: Undefined offset: 2 in C:\www\asx\short.php on line 68
Notice: Undefined offset: 3 in C:\www\asx\short.php on line 68
Notice: Undefined offset: 4 in C:\www\asx\short.php on line 68
Notice: Undefined offset: 5 in C:\www\asx\short.php on line 68
Notice: Undefined offset: 6 in C:\www\asx\short.php on line 68
Notice: Undefined offset: 7 in C:\www\asx\short.php on line 68
--------------------------------------------------------------
こんな感じにでてます!
No.10130 投稿時間:2003年05月15日(Thu) 10:54 投稿者名:水芹 URL:http://www.dream-seed.com/
はじめまして、こんにちは。
>しかし、IEで確認してみると、エラーらしきものがでてます!どういう意味かご存知の方
>よろしくお願いします!
short.phpの68行目がおかしいということです。おそらく配列絡みのエラー(Notice)です。
php.iniに
error_reporting = E_ALL & ~E_NOTICE
を設定するか、スクリプトの先頭に
error_reporting(1);
を追加すれば表示されなくなると思いますが、問題のあるスクリプトを修正した方がいいです。
No.10133 投稿時間:2003年05月15日(Thu) 11:49 投稿者名:マック URL:
> error_reporting(1);
> を追加すれば表示されなくなると思いますが、問題のあるスクリプトを修正した方がいいです。
スクリプトにerror_reporting(1);追加しました!
ありがとうございます!
次は、こんなエラーでてきましたが、よろしくお願いします!
Fatal error: Call to a member function on a non-object in C:\www\WebMail\index.php on line 49
No.10136 投稿時間:2003年05月15日(Thu) 15:16 投稿者名:水芹 URL:http://www.dream-seed.com/
> Fatal error: Call to a member function on a non-object in C:\www\WebMail\index.php on line 49
index.phpの49行目にエラーがあるってことです。
たぶん、$this->~みたいな部分だと思います。
なんていうか、設置しようとしているスクリプトのマニュアルをちゃんと読むなり、
配布元に聞くなりした方がいいと思いますよ(自作じゃなければ)。