Login problem with ver 2.0
Moderator: Thorsten
Login problem with ver 2.0
Hi,
Firstly I would like to thank you for an exellent piece of software!
I have been using phpmyfaq ver 1.6.11 with no problem and I am quite impressed. However, when i tried to install ver 2.0 I faced the following issue.
I login (either admin section or the normal operators section) with no problem. However any click on any link after the login will simply log me out.
In the case of the admin section, i always end up to the admin login page.
I have seen a couple of posts for a similar issue but none of those helped me in solving my problem.
One thing I have noticed when I login to the admin page, I can see on the top right corner the following:
--------------------------------------
Time to your session expiration
Loading...
--------------------------------------
I am running IIS6 with PHP Version 5.2.1 and MySql 5.1.17
Can you help please?
Thanks
Lakis
Firstly I would like to thank you for an exellent piece of software!
I have been using phpmyfaq ver 1.6.11 with no problem and I am quite impressed. However, when i tried to install ver 2.0 I faced the following issue.
I login (either admin section or the normal operators section) with no problem. However any click on any link after the login will simply log me out.
In the case of the admin section, i always end up to the admin login page.
I have seen a couple of posts for a similar issue but none of those helped me in solving my problem.
One thing I have noticed when I login to the admin page, I can see on the top right corner the following:
--------------------------------------
Time to your session expiration
Loading...
--------------------------------------
I am running IIS6 with PHP Version 5.2.1 and MySql 5.1.17
Can you help please?
Thanks
Lakis
Hi,
could you please enable the DEBUG mode in inc/Init.php and post possible erros here?
Thanks!
bye
Thorsten
could you please enable the DEBUG mode in inc/Init.php and post possible erros here?
Thanks!
bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist
Hi Thorsten,
I have enabled DEBUGGING and got the following warnings:
Top of screen
Warning: session_start() [function.session-start]: open(C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\php\session\sess_vr6uq5hq185eorfvi0om6f2kg0, O_RDWR) failed: Permission denied (13) in C:\Inetpub\wwwroot\TCTFAQ2.0\admin\index.php on line 42
And then at the bottom the following:
Warning: Unknown: open(C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\php\session\sess_vr6uq5hq185eorfvi0om6f2kg0, O_RDWR) failed: Permission denied (13) in Unknown on line 0
Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\php\session) in Unknown on line 0
Thanks
Lakis
I have enabled DEBUGGING and got the following warnings:
Top of screen
Warning: session_start() [function.session-start]: open(C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\php\session\sess_vr6uq5hq185eorfvi0om6f2kg0, O_RDWR) failed: Permission denied (13) in C:\Inetpub\wwwroot\TCTFAQ2.0\admin\index.php on line 42
And then at the bottom the following:
Warning: Unknown: open(C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\php\session\sess_vr6uq5hq185eorfvi0om6f2kg0, O_RDWR) failed: Permission denied (13) in Unknown on line 0
Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\php\session) in Unknown on line 0
Thanks
Lakis
Hi Again,
Thanks for you help Thorsten. After looking at the debug information I saw the problem.
The IUSR_<Machinename> did not have rights to write in that directory.
I have modified my php.ini to save the sessions in another directory and gave appropriate rights for the IUSR_<Machinename> user.
Everything works fine now.
Thanks again
Lakis
Thanks for you help Thorsten. After looking at the debug information I saw the problem.
The IUSR_<Machinename> did not have rights to write in that directory.
I have modified my php.ini to save the sessions in another directory and gave appropriate rights for the IUSR_<Machinename> user.
Everything works fine now.
Thanks again
Lakis
-
- Posts: 11
- Joined: Mon Jan 22, 2007 11:42 pm
- Contact:
Bah,
I'm having this problem too. My debug information follows.. unfortunatley I couldn't discern much from it myself.
I'm having this problem too. My debug information follows.. unfortunatley I couldn't discern much from it myself.
Code: Select all
DEBUG INFORMATION:
PMF_Configuration->getAll() in line 87:
SELECT
config_name, config_value
FROM
faq_faqconfig
PMF_AuthDb->checkLogin() in line 135:
SELECT
login
FROM
faq_faquserlogin
WHERE
login = 'admin'
db_mssql->error() in line 323:
SELECT @@ERROR AS ErrorCode
PMF_AuthDb->checkPassword() in line 140:
SELECT
login,
pass
FROM
faq_faquserlogin
WHERE
login = 'admin'
db_mssql->error() in line 248:
SELECT @@ERROR AS ErrorCode
PMF_User->getUserByLogin() in line 146:
SELECT
user_id,
login,
account_status
FROM
faq_faquser
WHERE
login = 'admin'
PMF_UserData->load() in line 373:
SELECT
last_modified, display_name, email
FROM
faq_faquserdata
WHERE
user_id = 1
PMF_CurrentUser->updateSessionId() in line 150:
UPDATE
faq_faquser
SET
session_id = 'onlltol473aolhkgrpv09k1ur3',
session_timestamp = 1187383520,
last_login = '20070817134520',
ip = '172.16.200.254'
WHERE
user_id = 1
PMF_CurrentUser->login() in line 89:
UPDATE
faq_faquser
SET
auth_source = 'local'
WHERE
user_id = 1
PMF_PermBasic->getAllRightsData() in line 122:
SELECT
right_id,
name,
description,
for_users,
for_groups
FROM
faq_faqright
ORDER BY
right_id ASC
PMF_PermBasic->getUserRights() in line 309:
SELECT
faq_faqright.right_id AS right_id
FROM
faq_faqright,
faq_faquser_right,
faq_faquser
WHERE
faq_faqright.right_id = faq_faquser_right.right_id AND
faq_faquser.user_id = 1 AND
faq_faquser.user_id = faq_faquser_right.user_id
db_mssql->getTableStatus() in line 269:
SELECT
obj.name AS table_name,
idx.rows AS table_rows
FROM
sysobjects obj, sysindexes idx
WHERE
idx.id = OBJECT_ID(obj.name)
AND idx.indid < 2
AND obj.xtype = 'u'
ORDER BY obj.name
db_mssql->server_version() in line 350:
SELECT @@version AS SERVER_VERSION
COOKIES:
pmf_lang: en
pmf_sid: 1
pmf_auth_: ieelc1abass4o8g9boapev3hp4
TABLES & RECORDS:
faq_faqadminlog: 0
faq_faqcaptcha: 0
faq_faqcategories: 0
faq_faqcategory_group: 0
faq_faqcategory_user: 0
faq_faqcategoryrelations: 0
faq_faqchanges: 0
faq_faqcomments: 0
faq_faqconfig: 33
faq_faqdata: 0
faq_faqdata_group: 0
faq_faqdata_revisions: 0
faq_faqdata_tags: 0
faq_faqdata_user: 0
faq_faqglossary: 0
faq_faqgroup: 0
faq_faqgroup_right: 0
faq_faqlinkverifyrules: 0
faq_faqnews: 0
faq_faqquestions: 0
faq_faqright: 29
faq_faqsessions: 2
faq_faqtags: 0
faq_faquser: 2
faq_faquser_group: 0
faq_faquser_right: 29
faq_faquserdata: 2
faq_faquserlogin: 2
faq_faqvisits: 0
faq_faqvoting: 0
-
- Posts: 11
- Joined: Mon Jan 22, 2007 11:42 pm
- Contact:
Warnings
No, I didn't get any warnings - which is the strange part.
I checked directory permissions for the sessions folder to ensure that they were writable to the server and they are.
I'm at a bit of a loss as to why it's not working.
I checked directory permissions for the sessions folder to ensure that they were writable to the server and they are.
I'm at a bit of a loss as to why it's not working.
session problem
I have the same issue here, trying 2.03 on a Windows Server with PHP 4.3.9 and a MSSQL database. I can login but get back to the login page when clicking any link in the admin menu. There are no warnings, when I enable the debug mode, here is what I get:
And when I click on any link and get back to the login page, this is what I get:
Code: Select all
phpMyFAQ Version phpMyFAQ 2.0.3
Server Software Microsoft-IIS/6.0
PHP Version PHP 4.3.9
Register Globals on
Safe Mode off
Open Basedir off
Database Server Mssql
Database Client Version Database Server Version Microsoft SQL Server 2000 - 8.00.818 (Intel X86) May 31 2003 16:08:15 Copyright (c) 1988-2003 Microsoft Corporation Standard Edition on Windows NT 5.2 (Build 3790: )
Webserver Interface CGI-FCGI
PHP Extensions standard, bcmath, calendar, ctype, com, ftp, mysql, odbc, overload, pcre, session, tokenizer, xml, wddx, zlib, gd, imap, mssql, oci8, oracle, pdf
NOTE: Art is resistance. Thank you very much for inspiration and everything else, L.
DEBUG INFORMATION:
pmf_currentuser->getuserbylogin() in line 146:
SELECT
user_id,
login,
account_status
FROM
knowledgebase_faquser
WHERE
login = 'admin'
pmf_userdata->load() in line 373:
SELECT
last_modified, display_name, email
FROM
knowledgebase_faquserdata
WHERE
user_id = 1
pmf_currentuser->updatesessionid() in line 150:
UPDATE
knowledgebase_faquser
SET
session_id = '72e3dedf3a074d582e410d6d2b7b94d4',
session_timestamp = 1187880695,
last_login = '20070823165135',
ip = '10.236.110.93'
WHERE
user_id = 1
pmf_currentuser->login() in line 89:
UPDATE
knowledgebase_faquser
SET
auth_source = 'local'
WHERE
user_id = 1
pmf_permmedium->getallrightsdata() in line 122:
SELECT
right_id,
name,
description,
for_users,
for_groups
FROM
knowledgebase_faqright
ORDER BY
right_id ASC
pmf_permmedium->getuserrights() in line 746:
SELECT
knowledgebase_faqright.right_id AS right_id
FROM
knowledgebase_faqright,
knowledgebase_faquser_right,
knowledgebase_faquser
WHERE
knowledgebase_faqright.right_id = knowledgebase_faquser_right.right_id AND
knowledgebase_faquser.user_id = 1 AND
knowledgebase_faquser.user_id = knowledgebase_faquser_right.user_id
pmf_permmedium->getusergrouprights() in line 747:
SELECT
knowledgebase_faqright.right_id AS right_id
FROM
knowledgebase_faqright,
knowledgebase_faqgroup_right,
knowledgebase_faqgroup,
knowledgebase_faquser_group,
knowledgebase_faquser
WHERE
knowledgebase_faquser.user_id = 1 AND
knowledgebase_faquser.user_id = knowledgebase_faquser_group.user_id AND
knowledgebase_faqgroup.group_id = knowledgebase_faquser_group.group_id AND
knowledgebase_faqgroup.group_id = knowledgebase_faqgroup_right.group_id AND
knowledgebase_faqright.right_id = knowledgebase_faqgroup_right.right_id
pmf_permmedium->getusergroups() in line 149:
SELECT
knowledgebase_faqgroup.group_id AS group_id
FROM
knowledgebase_faquser,
knowledgebase_faquser_group,
knowledgebase_faqgroup
WHERE
knowledgebase_faquser.user_id = 1 AND
knowledgebase_faquser.user_id = knowledgebase_faquser_group.user_id AND
knowledgebase_faqgroup.group_id = knowledgebase_faquser_group.group_id
db_mssql->gettablestatus() in line 269:
SELECT
obj.name AS table_name,
idx.rows AS table_rows
FROM
sysobjects obj, sysindexes idx
WHERE
idx.id = OBJECT_ID(obj.name)
AND idx.indid < 2
AND obj.xtype = 'u'
ORDER BY obj.name
db_mssql->server_version() in line 350:
SELECT @@version AS SERVER_VERSION
COOKIES:
pmf_lang: de
pmf_auth_: a4436756888aa9c1871914b624c97aad
Code: Select all
DEBUG INFORMATION:
COOKIES:
pmf_lang: de
pmf_auth_: 16fc40982e295e784902654840171013
ASPSESSIONIDASADBSBR: CPLDNDKCEOPIJBCKLJKAPAPE
nachname: xxx
vorname: xxx
log: Ja
Benutzername: xxx
SuperUser: nein
Login Problems
Hello -
I am having the same problem installing v2.03 using IIS 5 , PHP 5.2.4 & MSSQL 2000
Data is written to the SQL tables, but I always get returned to the admin screen. In debug mode I get the following:
[code]
DEBUG INFORMATION:
PMF_Configuration->getAll() in line 87:
SELECT
config_name, config_value
FROM
faqconfig
PMF_AuthDb->checkLogin() in line 135:
SELECT
login
FROM
faquserlogin
WHERE
login = 'admin'
db_mssql->error() in line 323:
SELECT @@ERROR AS ErrorCode
PMF_AuthDb->checkPassword() in line 140:
SELECT
login,
pass
FROM
faquserlogin
WHERE
login = 'admin'
db_mssql->error() in line 248:
SELECT @@ERROR AS ErrorCode
PMF_User->getUserByLogin() in line 146:
SELECT
user_id,
login,
account_status
FROM
faquser
WHERE
login = 'admin'
PMF_UserData->load() in line 373:
SELECT
last_modified, display_name, email
FROM
faquserdata
WHERE
user_id = 1
PMF_CurrentUser->updateSessionId() in line 150:
UPDATE
faquser
SET
session_id = '86b5a6fddl3r04nngor70ce2p3',
session_timestamp = 1188829092,
last_login = '20070903161812',
ip = '127.0.0.1'
WHERE
user_id = 1
PMF_CurrentUser->login() in line 89:
UPDATE
faquser
SET
auth_source = 'local'
WHERE
user_id = 1
PMF_PermBasic->getAllRightsData() in line 122:
SELECT
right_id,
name,
description,
for_users,
for_groups
FROM
faqright
ORDER BY
right_id ASC
PMF_PermBasic->getUserRights() in line 309:
SELECT
faqright.right_id AS right_id
FROM
faqright,
faquser_right,
faquser
WHERE
faqright.right_id = faquser_right.right_id AND
faquser.user_id = 1 AND
faquser.user_id = faquser_right.user_id
db_mssql->getTableStatus() in line 269:
SELECT
obj.name AS table_name,
idx.rows AS table_rows
FROM
sysobjects obj, sysindexes idx
WHERE
idx.id = OBJECT_ID(obj.name)
AND idx.indid < 2
AND obj.xtype = 'u'
ORDER BY obj.name
db_mssql->server_version() in line 350:
SELECT @@version AS SERVER_VERSION
COOKIES:
pmf_lang: en
pmf_auth__: 7hfc5g0vt5llp5hrgfp8euve54
TABLES & RECORDS:
faqadminlog: 0
faqcaptcha: 0
faqcategories: 0
faqcategory_group: 0
faqcategory_user: 0
faqcategoryrelations: 0
faqchanges: 0
faqcomments: 0
faqconfig: 33
faqdata: 0
faqdata_group: 0
faqdata_revisions: 0
faqdata_tags: 0
faqdata_user: 0
faqglossary: 0
faqgroup: 0
faqgroup_right: 0
faqlinkverifyrules: 0
faqnews: 0
faqquestions: 0
faqright: 29
faqsessions: 2
faqtags: 0
faquser: 2
faquser_group: 0
faquser_right: 29
faquserdata: 2
faquserlogin: 2
faqvisits: 0
faqvoting: 0
[/code]
Clicking on any link brings me back to the login screen with the following:
[code]PMF_Configuration->getAll() in line 87:
SELECT
config_name, config_value
FROM
faqconfig
COOKIES:
pmf_lang: en
pmf_auth__: 62qg027ne17d5ngagtgrp2v9a6
TABLES & RECORDS:
faqadminlog: 0
faqcaptcha: 0
faqcategories: 0
faqcategory_group: 0
faqcategory_user: 0
faqcategoryrelations: 0
faqchanges: 0
faqcomments: 0
faqconfig: 33
faqdata: 0
faqdata_group: 0
faqdata_revisions: 0
faqdata_tags: 0
faqdata_user: 0
faqglossary: 0
faqgroup: 0
faqgroup_right: 0
faqlinkverifyrules: 0
faqnews: 0
faqquestions: 0
faqright: 29
faqsessions: 2
faqtags: 0
faquser: 2
faquser_group: 0
faquser_right: 29
faquserdata: 2
faquserlogin: 2
faqvisits: 0
faqvoting: 0[/code]
Would love to look at this further, but I am not sure hoe to proceed.
Thanks in advance for any guidance.
I am having the same problem installing v2.03 using IIS 5 , PHP 5.2.4 & MSSQL 2000
Data is written to the SQL tables, but I always get returned to the admin screen. In debug mode I get the following:
[code]
DEBUG INFORMATION:
PMF_Configuration->getAll() in line 87:
SELECT
config_name, config_value
FROM
faqconfig
PMF_AuthDb->checkLogin() in line 135:
SELECT
login
FROM
faquserlogin
WHERE
login = 'admin'
db_mssql->error() in line 323:
SELECT @@ERROR AS ErrorCode
PMF_AuthDb->checkPassword() in line 140:
SELECT
login,
pass
FROM
faquserlogin
WHERE
login = 'admin'
db_mssql->error() in line 248:
SELECT @@ERROR AS ErrorCode
PMF_User->getUserByLogin() in line 146:
SELECT
user_id,
login,
account_status
FROM
faquser
WHERE
login = 'admin'
PMF_UserData->load() in line 373:
SELECT
last_modified, display_name, email
FROM
faquserdata
WHERE
user_id = 1
PMF_CurrentUser->updateSessionId() in line 150:
UPDATE
faquser
SET
session_id = '86b5a6fddl3r04nngor70ce2p3',
session_timestamp = 1188829092,
last_login = '20070903161812',
ip = '127.0.0.1'
WHERE
user_id = 1
PMF_CurrentUser->login() in line 89:
UPDATE
faquser
SET
auth_source = 'local'
WHERE
user_id = 1
PMF_PermBasic->getAllRightsData() in line 122:
SELECT
right_id,
name,
description,
for_users,
for_groups
FROM
faqright
ORDER BY
right_id ASC
PMF_PermBasic->getUserRights() in line 309:
SELECT
faqright.right_id AS right_id
FROM
faqright,
faquser_right,
faquser
WHERE
faqright.right_id = faquser_right.right_id AND
faquser.user_id = 1 AND
faquser.user_id = faquser_right.user_id
db_mssql->getTableStatus() in line 269:
SELECT
obj.name AS table_name,
idx.rows AS table_rows
FROM
sysobjects obj, sysindexes idx
WHERE
idx.id = OBJECT_ID(obj.name)
AND idx.indid < 2
AND obj.xtype = 'u'
ORDER BY obj.name
db_mssql->server_version() in line 350:
SELECT @@version AS SERVER_VERSION
COOKIES:
pmf_lang: en
pmf_auth__: 7hfc5g0vt5llp5hrgfp8euve54
TABLES & RECORDS:
faqadminlog: 0
faqcaptcha: 0
faqcategories: 0
faqcategory_group: 0
faqcategory_user: 0
faqcategoryrelations: 0
faqchanges: 0
faqcomments: 0
faqconfig: 33
faqdata: 0
faqdata_group: 0
faqdata_revisions: 0
faqdata_tags: 0
faqdata_user: 0
faqglossary: 0
faqgroup: 0
faqgroup_right: 0
faqlinkverifyrules: 0
faqnews: 0
faqquestions: 0
faqright: 29
faqsessions: 2
faqtags: 0
faquser: 2
faquser_group: 0
faquser_right: 29
faquserdata: 2
faquserlogin: 2
faqvisits: 0
faqvoting: 0
[/code]
Clicking on any link brings me back to the login screen with the following:
[code]PMF_Configuration->getAll() in line 87:
SELECT
config_name, config_value
FROM
faqconfig
COOKIES:
pmf_lang: en
pmf_auth__: 62qg027ne17d5ngagtgrp2v9a6
TABLES & RECORDS:
faqadminlog: 0
faqcaptcha: 0
faqcategories: 0
faqcategory_group: 0
faqcategory_user: 0
faqcategoryrelations: 0
faqchanges: 0
faqcomments: 0
faqconfig: 33
faqdata: 0
faqdata_group: 0
faqdata_revisions: 0
faqdata_tags: 0
faqdata_user: 0
faqglossary: 0
faqgroup: 0
faqgroup_right: 0
faqlinkverifyrules: 0
faqnews: 0
faqquestions: 0
faqright: 29
faqsessions: 2
faqtags: 0
faquser: 2
faquser_group: 0
faquser_right: 29
faquserdata: 2
faquserlogin: 2
faqvisits: 0
faqvoting: 0[/code]
Would love to look at this further, but I am not sure hoe to proceed.
Thanks in advance for any guidance.
-
- Posts: 2
- Joined: Thu Sep 13, 2007 9:31 pm
- Location: Fort Worth, TX
I'm experiencing this same problem as well.
I'm experiencing this exact same problem where once you log into the Administration pages, you'll be thrown back to the login screen on any option you select. I am not experiencing any PHP warnings at any point either.
The test server is a Windows 2000 server using IIS5, PHP 5.2.2, MSSQL 2000 (Build 2195, SP4) with PHP loaded as an ISAPI module.
One thing I've noticed is the pmf_auth_ COOKIE is changing and I'm guessing that shouldn't be happening.
Here's the DEBUG once logged in:
Here is the DEBUG once you are forced back to the login page:
Thanks, the project looks interesting, I just wish I could do something with it. 
The test server is a Windows 2000 server using IIS5, PHP 5.2.2, MSSQL 2000 (Build 2195, SP4) with PHP loaded as an ISAPI module.
One thing I've noticed is the pmf_auth_ COOKIE is changing and I'm guessing that shouldn't be happening.

Here's the DEBUG once logged in:
Code: Select all
DEBUG INFORMATION:
PMF_Configuration->getAll() in line 87:
SELECT
config_name, config_value
FROM
KBfaqconfig
PMF_AuthDb->checkLogin() in line 135:
SELECT
login
FROM
KBfaquserlogin
WHERE
login = 'admin'
db_mssql->error() in line 323:
SELECT @@ERROR AS ErrorCode
PMF_AuthDb->checkPassword() in line 140:
SELECT
login,
pass
FROM
KBfaquserlogin
WHERE
login = 'admin'
db_mssql->error() in line 248:
SELECT @@ERROR AS ErrorCode
PMF_User->getUserByLogin() in line 146:
SELECT
user_id,
login,
account_status
FROM
KBfaquser
WHERE
login = 'admin'
PMF_UserData->load() in line 373:
SELECT
last_modified, display_name, email
FROM
KBfaquserdata
WHERE
user_id = 1
PMF_CurrentUser->updateSessionId() in line 150:
UPDATE
KBfaquser
SET
session_id = '247hrasmrt6mamq3tt877o3ig3',
session_timestamp = 1189715666,
last_login = '20070913153426',
ip = '172.16.66.111'
WHERE
user_id = 1
PMF_CurrentUser->login() in line 89:
UPDATE
KBfaquser
SET
auth_source = 'local'
WHERE
user_id = 1
PMF_PermBasic->getAllRightsData() in line 122:
SELECT
right_id,
name,
description,
for_users,
for_groups
FROM
KBfaqright
ORDER BY
right_id ASC
PMF_PermBasic->getUserRights() in line 309:
SELECT
KBfaqright.right_id AS right_id
FROM
KBfaqright,
KBfaquser_right,
KBfaquser
WHERE
KBfaqright.right_id = KBfaquser_right.right_id AND
KBfaquser.user_id = 1 AND
KBfaquser.user_id = KBfaquser_right.user_id
db_mssql->getTableStatus() in line 269:
SELECT
obj.name AS table_name,
idx.rows AS table_rows
FROM
sysobjects obj, sysindexes idx
WHERE
idx.id = OBJECT_ID(obj.name)
AND idx.indid < 2
AND obj.xtype = 'u'
ORDER BY obj.name
db_mssql->server_version() in line 350:
SELECT @@version AS SERVER_VERSION
COOKIES:
pmf_lang: en
pmf_auth_: 15qi2kjqves0ipf1frvnk2flc7
TABLES & RECORDS:
KBfaqadminlog: 0
KBfaqcaptcha: 0
KBfaqcategories: 0
KBfaqcategory_group: 0
KBfaqcategory_user: 0
KBfaqcategoryrelations: 0
KBfaqchanges: 0
KBfaqcomments: 0
KBfaqconfig: 33
KBfaqdata: 0
KBfaqdata_group: 0
KBfaqdata_revisions: 0
KBfaqdata_tags: 0
KBfaqdata_user: 0
KBfaqglossary: 0
KBfaqgroup: 0
KBfaqgroup_right: 0
KBfaqlinkverifyrules: 0
KBfaqnews: 0
KBfaqquestions: 0
KBfaqright: 29
KBfaqsessions: 1
KBfaqtags: 0
KBfaquser: 2
KBfaquser_group: 0
KBfaquser_right: 29
KBfaquserdata: 2
KBfaquserlogin: 2
KBfaqvisits: 0
KBfaqvoting: 0
Code: Select all
DEBUG INFORMATION:
PMF_Configuration->getAll() in line 87:
SELECT
config_name, config_value
FROM
KBfaqconfig
COOKIES:
pmf_lang: en
pmf_auth_: 1gu3pcnkfkl7nofr7hj22f9i67
TABLES & RECORDS:
KBfaqadminlog: 0
KBfaqcaptcha: 0
KBfaqcategories: 0
KBfaqcategory_group: 0
KBfaqcategory_user: 0
KBfaqcategoryrelations: 0
KBfaqchanges: 0
KBfaqcomments: 0
KBfaqconfig: 33
KBfaqdata: 0
KBfaqdata_group: 0
KBfaqdata_revisions: 0
KBfaqdata_tags: 0
KBfaqdata_user: 0
KBfaqglossary: 0
KBfaqgroup: 0
KBfaqgroup_right: 0
KBfaqlinkverifyrules: 0
KBfaqnews: 0
KBfaqquestions: 0
KBfaqright: 29
KBfaqsessions: 1
KBfaqtags: 0
KBfaquser: 2
KBfaquser_group: 0
KBfaquser_right: 29
KBfaquserdata: 2
KBfaquserlogin: 2
KBfaqvisits: 0
KBfaqvoting: 0

-Eric Culpepper
Session loading - bad login - vers 2.0.3
hallo,
this problem is posting several times and I can't nowhere find the solution.
So, I have the problem too:
Warning: ini_set() [function.ini-set]: A session is active. You cannot change the session module's ini settings at this time. in myfaq\inc\Init.php on line 96
Notice: A session had already been started - ignoring session_start() in myfaq\admin\index.php on line 42
Warning: Cannot modify header information - headers already sent by (output started at myfaq\inc\Init.php:96) in myfaq\admin\header.php on line 27
Warning: Cannot modify header information - headers already sent by (output started at myfaq\inc\Init.php:96) in myfaq\admin\header.php on line 28
Warning: Cannot modify header information - headers already sent by (output started at myfaq\inc\Init.php:96) in myfaq\admin\header.php on line 29
Warning: Cannot modify header information - headers already sent by (output started at myfaq\inc\Init.php:96) in myfaq\admin\header.php on line 30
Warning: Cannot modify header information - headers already sent by (output started at myfaq\inc\Init.php:96) in myfaq\admin\header.php on line 31
Warning: Cannot modify header information - headers already sent by (output started at myfaq\inc\Init.php:96) in myfaq\admin\header.php on line 32
Warning: Cannot modify header information - headers already sent by (output started at myfaq\inc\Init.php:96) in myfaq\admin\header.php on line 33
System Information
phpMyFAQ Version
phpMyFAQ 2.0.3
Server Software
Apache/2.2.0 (Win32) DAV/2 mod_ssl/2.2.0 OpenSSL/0.9.8a mod_autoindex_color PHP/5.1.2
PHP Version
PHP 5.1.2
Register Globals
off
Safe Mode
off
Open Basedir
off
Database Server
Mysqli
Database Client Version
5.0.20
Database Server Version
5.0.20-community
Webserver Interface
APACHE2HANDLER
PHP Extensions
bcmath, calendar, com_dotnet, ctype, date, ftp, iconv, odbc, pcre, Reflection, session, libxml, standard, tokenizer, zlib, SimpleXML, dom, SPL, wddx, xml, xmlreader, xmlwriter, apache2handler, gd, gettext, imap, mbstring, exif, mime_magic, ming, mssql, mysql, mysqli, openssl, pdf, PDO, pdo_mssql, pdo_mysql, soap, sockets, SQLite, xmlrpc, xsl, zip, Zend Optimizer
and here is my solution:
session.auto_start = 0
that's all.
bye
mike
this problem is posting several times and I can't nowhere find the solution.

So, I have the problem too:
Warning: ini_set() [function.ini-set]: A session is active. You cannot change the session module's ini settings at this time. in myfaq\inc\Init.php on line 96
Notice: A session had already been started - ignoring session_start() in myfaq\admin\index.php on line 42
Warning: Cannot modify header information - headers already sent by (output started at myfaq\inc\Init.php:96) in myfaq\admin\header.php on line 27
Warning: Cannot modify header information - headers already sent by (output started at myfaq\inc\Init.php:96) in myfaq\admin\header.php on line 28
Warning: Cannot modify header information - headers already sent by (output started at myfaq\inc\Init.php:96) in myfaq\admin\header.php on line 29
Warning: Cannot modify header information - headers already sent by (output started at myfaq\inc\Init.php:96) in myfaq\admin\header.php on line 30
Warning: Cannot modify header information - headers already sent by (output started at myfaq\inc\Init.php:96) in myfaq\admin\header.php on line 31
Warning: Cannot modify header information - headers already sent by (output started at myfaq\inc\Init.php:96) in myfaq\admin\header.php on line 32
Warning: Cannot modify header information - headers already sent by (output started at myfaq\inc\Init.php:96) in myfaq\admin\header.php on line 33
System Information
phpMyFAQ Version
phpMyFAQ 2.0.3
Server Software
Apache/2.2.0 (Win32) DAV/2 mod_ssl/2.2.0 OpenSSL/0.9.8a mod_autoindex_color PHP/5.1.2
PHP Version
PHP 5.1.2
Register Globals
off
Safe Mode
off
Open Basedir
off
Database Server
Mysqli
Database Client Version
5.0.20
Database Server Version
5.0.20-community
Webserver Interface
APACHE2HANDLER
PHP Extensions
bcmath, calendar, com_dotnet, ctype, date, ftp, iconv, odbc, pcre, Reflection, session, libxml, standard, tokenizer, zlib, SimpleXML, dom, SPL, wddx, xml, xmlreader, xmlwriter, apache2handler, gd, gettext, imap, mbstring, exif, mime_magic, ming, mssql, mysql, mysqli, openssl, pdf, PDO, pdo_mssql, pdo_mysql, soap, sockets, SQLite, xmlrpc, xsl, zip, Zend Optimizer
and here is my solution:

session.auto_start = 0
that's all.
bye
mike
Re: Session loading - bad login - vers 2.0.3
Hi Mike,qafym wrote:
and here is my solution:![]()
session.auto_start = 0
that's all.
in which file do you change this setting?
Regards
Jörg
Hi,
I cannot fix the session autostart from the application. I'm still investigating this strange issue.
bye
Thorsten
I cannot fix the session autostart from the application. I'm still investigating this strange issue.
bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
amazon.de Wishlist