可以为不同的 zend 应用程序设置不同的会话保存路径吗?
我正在为我的企业创建一个仓库管理系统,该系统由 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的服务器配置允许,只需使用 .htaccess 更改会话保存路径即可。
在每个应用程序中添加:
小心,不要选择可以从网络访问的文件夹!
If your server configuration allow it just change the session save path with your .htaccess.
In each application add :
Be careful and do not choose a folder which could be accessed from the web !