English 中文(简体)
PHP: MYSQL基于不同机器的共享
原标题:PHP: MYSQL-based session sharing on different machine

我在机器A(solaris.example.com)上有一席,机器B(rhodes.example.com)上有一席,这两台机器与同一MYSQL数据库连接,该数据库有一席。

我已执行我自己的会议手稿,以便节省数据库的费用,而不是将其保存到档案中,而这项工作是罚款的。

我的问题是,我如何从机器B获得在机器A上设定的准确会议身份?

我的手稿对两台机器做了这些安排:

ini_set("session.gc_maxlifetime", "288000"); 
ini_set("session.cookie_lifetime", "288000");
ini_set("session.save_handler", "user");  
session_set_cookie_params( 0, "/", ".example.com", false, false);
session_cache_expire(288000);

问题Im到是,机器B在桌上设置了新的会议,当我试图用<条码>在机器B上设定会议编号时,则使用<条码_id (美元_GET[`sessId”] ,它压倒了机器A创造的价值。

问题是,我如何告诉机器B如何使用由机器A创建的、从表格中获取数据的元数据。

我认为这是自动的,因为我称之为session_set_cookie_params(0,“/”,“example.com”,不实;

任何帮助都是热情的。

最佳回答

我将努力在用户机器上节省一个厨师,这样一来可以很容易地确定自己的会议是否存在。 当然,如果使用者有残疾的厨师,那就赢得了笔工作。

您可以根据用户P/etc储存某种有意义的数据,然后根据这些数据确定用户。 注:只有在你能够准确识别用户时,这一解决办法才会奏效。 否则,你可以向目前的用户提供其他用户会议。

Edit i发现“link on SO,或许会有所帮助。

问题回答




相关问题
why the session in iis automatically log out?

I used iis6, and when i called a function Directory.delete(), the all the session relate this website will be logged out. and i debugged the website, i found no exception. any one have ideas on this ? ...

Check session from a view in CodeIgniter

What is the best way to check session from a view in CodeIgniter, it shows no way in their user guide, otherwise I will have to make two views on everything, which is kinda weird...still a newbie to ...

Can I get the size of a Session object in bytes in c#?

Is it possible to get the size(in bytes) of a Session object after storing something such as a datatable inside it? I want to get the size of a particular Session object, such as Session["table1"], ...

提供严格分类的出席会议物体

提供严格分类的与会机会的最佳方式是什么? 我正计划转而选择矩阵,这正在促使汇编者抱怨我的幻觉方案拟订方法......

PHP Session is not destroying after user logout

I m trying to create an authentication mechanism for my PHP Application and I m having difficulty destroying the session. I ve tried unsetting the authentication token which was previously set within ...

热门标签