Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
485 views
in Q2A Core by
edited by

I would like to know more about qa_cookies. Example entries: 

cookieid created createip written writeip
1616998859625367400 2013-01-09 09:10:52 1351659518 2013-01-09 09:10:52 1351659518
17762331686246191714 2013-01-09 01:11:32 1558524896 2013-01-09 01:11:32 1558524896
16769361733673514866 2013-01-09 00:11:43 1419461695 2013-01-09 00:11:43 1419461695
17246418231037538345 2013-01-08 22:56:03 1575265698 NULL NULL


How are the columns used?

cookieid → clear, saves the generated cookie-id to identify the user

created → time of creation

creatip → recent IP of the user (?)

written → ... ?

writeip → ... ?

 

This question is actually related to the headers-already-sent-bug (badges plugin), as the last entry in the table above with NULL | NULL was giving me a server error. Badges plugin called: qa_cookie_get_create()

Thanks,
Kai

 

1 Answer

0 votes
by
selected by
 
Best answer

All tables are described in function qa_db_table_definitions() in qa-db-install.php

by
Thanks, I have never checked this file before ;)
...