php:仅使用 cookies 不起作用

发布于 2024-11-08 15:16:58 字数 304 浏览 0 评论 0原文

我通过 ini_set("session.use_only_cookies", "1"); 更改设置,ini_get 返回正确的值。 但似乎没有什么区别,sessionID 仍然被添加到页面的 URL 中。

可能出什么问题了?

php版本是4.4.9

编辑: 添加这一行

ini_set ('url_rewriter.tags', '');

session_start(); 之前

解决了它!谢谢你们!

I change the settings by ini_set("session.use_only_cookies", "1"); and ini_get returns the right value.
But it seems to make no difference, the sessionID is still added to the URLs on the page.

What could be wrong?

php version is 4.4.9

edit:
Adding the line

ini_set ('url_rewriter.tags', '');

before session_start(); solved it!

Thanks guys!

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

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

发布评论

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

评论(1

站稳脚跟 2024-11-15 15:16:58

根据 http://es.php.net/manual/en/ini.list .php,在您的 php 版本中,可以在 PHP_INI_PERDIR 处更改 session.use_trans_sid。根据 http://es.php.net/manual/en/configuration .changes.modes.phpPHP_INI_PERDIR,您只能在 php.inihttpd.conf.htaccess,但不是通过 ini_set()

因此,尝试使用以下行在 PHP 应用程序的根目录中创建一个 .htaccess 文件(如果您使用的是 apache):

php_value session.use_trans_sid On

顺便说一句,请考虑升级到较新版本的 PHP。 PHP 4.x 已经被放弃(没有获得安全更新)有一段时间了。

According to http://es.php.net/manual/en/ini.list.php, in your php version, session.use_trans_sid could be changed at PHP_INI_PERDIR. According to http://es.php.net/manual/en/configuration.changes.modes.php, PHP_INI_PERDIR, you may change values only at php.ini, httpd.conf or .htaccess, but not via ini_set().

So, try to create a .htaccess file in the root of your PHP application with this line(if you are using apache):

php_value session.use_trans_sid On

BTW, consider upgrading to a newer version of PHP. PHP 4.x has been abandoned (not getting security updates) for a while now.

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