More outdated info
Opened this issue · 8 comments
There's definitely more outdated info for 1.8, it just has to be checked.
Examples found just now:
- http://docs.mybb.com/1.8/translations/translations/#finding-translations links to old translations (the doc could be improved with the new 1.8.1 ACP translation features, too)
- http://docs.mybb.com/1.8/development/standards/#php-code-demarcation - we don't use closing tags anymore
- http://docs.mybb.com/1.8/development/cookies/#the-cookie-list misses many cookies (and
acploginattempts
is incorrectly duplicated, the 2nd should beadminsid
) - http://docs.mybb.com/1.8/development/contribute/#working-with-github-39-s-issue-tracker -
Approved
label is nowFixed
(and there are more labels not described in the doc) - http://docs.mybb.com/1.8/faq/logout/ -
Cannot login
andCookies
links are outdated - http://docs.mybb.com/1.8/administration/security/recovery/#new-security-measures has outdated PIN info too (and the whole section is a duplicate which can be replaced with a simple link: http://docs.mybb.com/1.8/administration/security/recovery/#new-security-measures)
- http://docs.mybb.com/1.8/administration/security/recovery/#get-in-control - Spybot is not really the most recommended tool right now, it could be replaced with KVRT, Hitman Pro or anything similar
Thanks for the additional findings.
@Destroy666x Am I missing any other cookies (or inaccurately describing any)? These are what I've found from a basic search.
ALSO: What language changes happened in 1.8.1? I can't seem to find a PR describing it or anything in the docs/blog.
- acploginattempts
- Stores the number of ACP login attempts a user has had.
- acp_view
- Stores the admin's preferred view when inline editing users in the ACP.
- adminsid
- Stores the current admin's Admin Session ID.
- collapsed
- This cookie keeps track of which categories and boxes have been collapsed (as opposed to being expanded by default).
- coppadob
- Stores user date of birth to submit with registration.
- coppauser
- Stores whether the user is a COPPA user or not.
- failedlogin
- If the user has exceed the maximum login attempts, failedlogin stores the time (UNIX timestamp) of the failure.
- forumpass[$fid]
- Stores a version of the forum password for $fid when a user has entered it correctly, to avoid prompting the user for a password more often than required.
- inlinemod_
-
There are multiple kinds of inline moderating cookies: forum, thread, and user, including:
- inlinemod_forumfid
- inlinemod_threadtid
- inlinemod_useracp - for storing users to inline-edit in the Admin CP
- loginattempts
- Stores the number of login attempts a user has had.
- multiquote
- mybb
- The mybb cookie is actually an array of cookies:
- mybb[announcements]
- Stores read annoucement IDs.
- mybb[forumread]
- Stores forums the user has read.
- mybb[lastvisit]
- This cookie stores the last time of visit in the UNIX timestamp format.
- mybb[lastactive]
- This cookie stores the last time that a forum page has been loaded, in the UNIX timestamp format.
- mybb[threadread]
- Stores threads read by the user.
- mybb[readallforums]
- Stores if the user has read all forums. Updated with mybb[lastvisit] in inc/functions_indicators.php.
- mybb[referrer]
- mybblang
- Stores the language preference of a guest.
- mybbratethread[{$tid}]
- Stores the user's rating of thread $tid.
- mybbtheme
- Stores the theme preference of a guest.
- mybbuser
- This cookie stores the login information for the Front End, and is set when a user logs in, and is removed when the user logs out. The UID and the login key are stored in this cookie.
- pollvotes[$pid]
- Stores a guest's vote on poll $pid.
- sid
- The current user's Session ID.
@JoshHarmon mybb/mybb#2131 (comment) + https://github.com/mybb/mybb/blob/feature/misc.php#L950
You're still missing some, e.g. the coppa ones.
@Destroy666x Thanks for the link. I'll get those added.
This one is outdated as well: http://docs.mybb.com/1.8/faq/mail/
http://community.mybb.com/thread-187311-post-1201591.html#pid1201591
@Destroy666x Thanks for the report. I'll look into that soon.
updated the translation URL with this commit: 75618d6
is anything else needed for the translation doc?
It would be nice to write a short guide of the new "Edit with" feature which makes translations much much easier. mybb/mybb#1218