可以为不同的 zend 应用程序设置不同的会话保存路径吗?

发布于 2024-11-04 17:39:56 字数 348 浏览 0 评论 0原文

我正在为我的企业创建一个仓库管理系统,该系统由 5 个不同的 zend 应用程序组成,所有应用程序都存储在一个网络服务器上。

我想要做的是将 3 个应用程序会话数据存储在一个文件夹“/internal/data/session”中

,将另外 2 个存储在它们自己的文件夹中。 我希望这将防止跨应用程序会话冲突。

我确信也许有一种更简单的方法可以做到这一点,但我想这样做。

在每个应用程序 config.ini 中,我想知道是否将特定的 session.savepath 目录设置为我想要的目录,这会导致 php.ini 出现问题吗?

基本上我要求每个与服务器的连接我可以设置该连接在哪里查找会话信息吗?

i'm creating a warehouse management system for my business which will be made up of 5 different zend applications all stored on the one webserver.

what i want to do is store 3 of the applications session data in one folder "/internal/data/session"

and the other 2 in their own folders.
i'm hoping this will prevent cross application session conflicts.

there maybe an easier way to do this i'm sure but i would like to do it this way.

in each applications config.ini i was wondering if i set there specific session.savepath directories to the ones i want will this cause a problem with the php.ini ?

basicly i'm asking for each connection to the server can i set where that connection looks for session information ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

∞觅青森が 2024-11-11 17:39:56

如果您的服务器配置允许,只需使用 .htaccess 更改会话保存路径即可。
在每个应用程序中添加:

php_value session.save_path '/myapplication/folder/session/'

小心,不要选择可以从网络访问的文件夹!

If your server configuration allow it just change the session save path with your .htaccess.
In each application add :

php_value session.save_path '/myapplication/folder/session/'

Be careful and do not choose a folder which could be accessed from the web !

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文