列出文章
|
頁: [1]
|
1
|
支援 / 安裝與設定 / Re: mail問題
|
於: 一月 19, 2006, 11:21:23 上午
|
LINUX那台可以telnet smtp.tp.edu.tw 25 但是XP這台沒辦法? 我在XP的防火牆中有將SMTP 25PORT設定為例外,是不是還有那邊要設定? 你可以这样进行尝试。 1、ping smtp.tp.edu.tw 检查能不能解析到IP,如果不可以,说明DNS有问题。 2、尝试关闭防火墙后测试telnet ,检查是不是防火墙设置问题。
|
|
|
2
|
支援 / 安裝與設定 / Re: mail問題
|
於: 一月 18, 2006, 10:58:00 下午
|
另一台机器能连接上说明网络应该没问题,但不一定这台服务器也肯定能连上。比如一些DNS设置,防火墙设置之类的。
在服务器上执行 telnet smtp.tp.edu.tw 25 先确定能连接上。
|
|
|
4
|
支援 / 安裝與設定 / Re: 关于error_incorrect_user_id错误
|
於: 十月 04, 2005, 12:45:18 上午
|
当然可以了 打印出来的话: Cookies: Array ( [plogsession] => 131b62b6b0b801b5a234e80d4804c759 [userId] => 2b265f43856f4b17b6cac484ff1fd903 ) Get: Array() Post: Array() Session: Array ( [SessionInfo] => sessioninfo Object ( [_props] => Array ( [summaryLang] => zh_CN ) [_objId] => [log] => ) ) $_REQUEST: Array ( [plogsession] => 131b62b6b0b801b5a234e80d4804c759 [userId] => 2b265f43856f4b17b6cac484ff1fd903 )
本身的确是Cookies有值,GET和POST都没值,因为我访问的是首页。 我奇怪的是为什么我在php.ini中设置了gpc_order = "GP",而且在php_info()中也能看到这个改变参数。 为什么$_REQUEST 还能读到我cookies中的值. 明天开始出去玩几天 ,回来再研究。。。
|
|
|
5
|
支援 / 安裝與設定 / Re: 关于error_incorrect_user_id错误
|
於: 十月 03, 2005, 08:48:43 下午
|
我找到原因了,问题在这个代码中。 function getRequest() { if( phpversion() >= "4.1.0" ) $requestVars = $_REQUEST; else { $postVars = HttpVars::getPost(); $getVars = HttpVars::getGet(); $cookieVars = HttpVars::getCookie();
$requestVars = array_merge( $getVars, $postVars, $cookieVars ); }
return $requestVars; }
我打印了$_REQUEST[userId],他可以取到我的cookies中userId的值。 开始认为是gpc_order = "GPC"的问题,我把php.ini中的设置改成这样也还是不行 我现在只好使用这个代码: function getRequest() { $postVars = HttpVars::getPost(); $getVars = HttpVars::getGet(); $cookieVars = "";
$requestVars = array_merge( $getVars, $postVars, $cookieVars );
return $requestVars; }
就是不明白问题出在哪里?
|
|
|
6
|
支援 / 安裝與設定 / Re: 关于error_incorrect_user_id错误
|
於: 九月 30, 2005, 03:43:18 下午
|
我從剛剛,每隔 10-20 分鐘 看一次你的 blog ... 並沒有你說的情形發生啊!你是用哪網址瀏覽你的網頁才看到這樣的情形呢?
Mark
受到启发,我找到问题原因了,是我的另一个应用用了全局cookies,所以冲突了,读取了另一个应用的userid,但plog好象自己并不创建cookies。 还有session中变量名冲突,也会造成这种错误。。。 但我还没找到plog中使用cookies地方,再继续找找,谢谢管理员
|
|
|
8
|
支援 / 安裝與設定 / 关于error_incorrect_user_id错误
|
於: 九月 29, 2005, 01:27:15 上午
|
我的plog经常出现这个错误,1.0.1和1.0.2版本都会出现这个错误:error_incorrect_user_id ,我在google中搜索了一下,好象N多网站都是这个错误,不知道是什么缘故。sqllog日志如下:
1.0.1时出现这个错误: generated the following error message = You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '垮崕' at line 7 29-09-2005 01:20:57 ERROR - The following query = SELECT u.id AS id, u.user AS user, u.password AS password, u.email AS email, u.about AS about, u.full_name AS full_name, u.properties AS properties, u.resource_picture_id AS resource_picture_id, IF(p.permission_id = 1, 1, 0 ) AS site_admin, u.status AS status FROM yupoo_users u LEFT JOIN yupoo_users_permissions p ON u.id = p.user_id WHERE u.id = 闃垮崕
升级到1.0.2后出现这个错误。 29-09-2005 01:51:21 ERROR - The following query = SELECT u.id AS id, u.user AS user, u.password AS password, u.email AS email, u.about AS about, u.full_name AS full_name, u.properties AS properties, u.resource_picture_id AS resource_picture_id, IF(p.permission_id = 1, 1, 0 ) AS site_admin, u.status AS status FROM yupoo_users u LEFT JOIN yupoo_users_permissions p ON u.id = p.user_id WHERE u.id = 2b265f43856f4b17b6cac484ff1fd903 ORDER BY blog_id generated the following error message = Unknown column '2b265f43856f4b17b6cac484ff1fd903' in 'where clause'
|
|
|
|
|
|