3
it is my guess?
I think that it is writing some trouble?.
Quote:
przemeks wrote:
Why sometimes in my modules URL's is session ID ex.:
informacje+article.id+43+PHPSESSID+b2043092e073d3c2bed93c52272fa1cd.htm
Why this !@#$%%^^ Session ID is showing in my URLs ??
I'm waiting for answeres.
http://jp.php.net/manual/en/ref.session.phpphp.ini
; Whether to use cookies.
session.use_cookies = 1
; use transient sid support if enabled by compiling with --enable-trans-sid.
session.use_trans_sid = 0
Excluding this
To the core source of Xoops
it's ,Please look at /incule/functions.php
about from line 390
if (defined('SID') && (! isset($_COOKIE[session_name()]) || ($xoopsConfig['use_mysession'] && $xoopsConfig['session_name'] != '' && !isset($_COOKIE[$xoopsConfig['session_name']])))) {
if (!strstr($url, '?')) {
$url .= '?' . SID;
} else {
$url .= '&'.SID;
}
}
when this is.
sometimes in my modules URL's is session ID.
It is time when it has jumped to my site specifying id etc. of the thread that
doesn't exist.
The access of ..sequential.. consecutive id etc. have gone out of the search
engine etc. , too.
This specification is unnecessary on my site.
delelte lines or souce comments
-----------------------------
Quote:
przemeks wrote:
I use "simplified urls".
In admin panel i disable a additional sessions options.
Users can't log in to my XOOPS (i disable this option).
the following be related?
Isn't the following mistakes?being said(xoops forum from GIJOE)
inculde/common.php
from about? line 175
if (function_exists('session_cache_expire')) {
session_cache_expire($xoopsConfig['session_expire']);
}
http://jp.php.net/manual/en/function.session-cache-expire.phphttp://jp.php.net/manual/ja/ref.session.phpto
//HACK for FIX (from XOOPS japan forum by GIJOE)
ini_set( 'session.gc_maxlifetime' , $xoopsConfig['session_expire'] * 60 ) ;