Summary:
Version:
Prerequisites:
Status:
Maintainer:
Questions answered by this recipe
This section is optional; use it to indicate the types of questions (if any) this recipe is intended to answer.
Description
Enter your recipe's description here.
Notes
Release Notes
If the recipe has multiple releases, then release notes can be placed here. Note that it's often easier for people to work with "release dates" instead of "version numbers".
Comments
PKHG speaking (10 June 2007 9:00)
I am trying to understand the following error:
- Running PmWiki beta54 on the local webserver AbyssWebServer, authorization works fine.
Prefix WEB.
- Running the same PmWiki (copy a whole directory) on XAMPP Apache, authorization does not work at all.
Prefix XAMPP.
- I set AbyssWebSever listening to port 8888 (so both version run at the same time visible in tabs of FF)
Started debugging on 7.6.07. I use in userauth2.php this code.
function debugMsg($par1,$msg){
if($par1==''){
echo("<br >XAMPP $msg");
} else {
echo("<br />XAMPP array: $par1 <br />");
print_r($msg);
}
}
Output is generated by removing the // comment before appendToUA2ErrorLog commands, flushed by flushUA2ErrorLog.
- Opening of Site/Login gives output which on both versions a similar (difference is only a prefix WEB and XAMPP respectively).
- logging in, the WEB-version remembers the user: admin, the XAMPP version stays unauthorized (admin!).
- All SESSION variables XAMPP-version (except of CacheStarttime) have 'vanished'?
I am chasing the place where SESSION is cleared (unexpectedly).
See Also
Contributors