Register
Home Projects Help

root / trunk / phpBB / cron.php

cron.php

View | Annotate | Download (5.8 KB)

# Date Author Comment
8572 View | Annotate 05/29/2008 02:25 PM acydburn

ok… i hope i haven’t messed too much with the code and everything is still working.
Changes:
- Ascraeus now uses constants for the phpbb root path and the php extension. This ensures more security for external applications and modifications (no more overwriting of root path and extension possible through insecure mods and register globals enabled) as well as no more globalizing needed.
- A second change implemented here is an additional short-hand-notation for append_sid(). It is allowed to omit the root path and extension now (for example calling append_sid(‘memberlist’)) – in this case the root path and extension get added automatically. The hook is called after these are added.

8477 View | Annotate 03/29/2008 01:08 AM naderman

Go away evil carriage returns\!

8146 View | Annotate 10/05/2007 04:30 PM acydburn

dumdidum… sorry. ;)

8087 View | Annotate 09/12/2007 05:32 PM acydburn

some tiny fixes…

8079 View | Annotate 09/05/2007 03:33 PM acydburn

fixing some language and style bugs…

8022 View | Annotate 08/12/2007 08:16 PM acydburn

fix bug with cron execution for all new RC4 installations as well as those having manually updated.

7954 View | Annotate 07/26/2007 05:51 PM acydburn

do not get too excited

7947 View | Annotate 07/25/2007 07:58 PM naderman

- cron now uses a locking variable to make sure it does not spawn too many webserver processes [Bug #12741]

7881 View | Annotate 07/13/2007 05:47 PM acydburn

changes

6317 View | Annotate 08/25/2006 05:15 PM acydburn

some fixes.

David, could you check the pass_complex expressions? They are:
.* PASS_TYPE_ANY (any characters are allowed, no check)
[a-zA-Z] PASS_TYPE_CASE (password must contain alphanumerics)
[a-zA-Z0-9] PASS_TYPE_ALPHA (password must contain alphanumerics and numbers)
[a-zA-Z\W] PASS_TYPE_SYMBOL (password must contain alphanumers, numbers and symbols)

At the moment the pass complexity check is done within validate_password(), but the expressions are wrong. :)

6055 View | Annotate 06/13/2006 05:06 PM acydburn

- added class=”radio” to all radio- and checkboxes
- make sure the database gets closed correctly in cron.php
- bugfixes

6054 View | Annotate 06/13/2006 12:16 AM acydburn

- get swatch converted into new acp format
- add page title to ucp pages
- add ability to supress getting the who is online list in page_header() (saves us ideally 1-2 queries on ucp/mcp pages)
- fixing pm rules a bit as well as now having complete author memberships for author_in_group (sender -> is in usergroup -> xxx)

6048 View | Annotate 06/11/2006 08:13 PM acydburn

- fixed a few bugs
- added user_add() function
- check posted images ([img]) for same domain/scipt and php files
- auth_api.html updated to the coding guidelines look&feel
- introduced ability to force non page-updates (cron is using it)
- correctly resend coppa email

5957 View | Annotate 05/21/2006 06:54 PM acydburn

- fixing a few smaller bugs/glitches
- init user session in cron.php (else it can produce errors if functions expect the user object being set)
- fix sql escaping for mssql/mssql_odbc

5929 View | Annotate 05/18/2006 08:18 PM acydburn

- added a few missing log variables
- include acp/common.php language file if displaying logs (LOG_ variables should be stored there only now)
- added check to cron.php
- added database_gc config variable
- recalculate binary trees every once a week ;)

5612 View | Annotate 03/09/2006 07:32 PM acydburn

- fix cookie shortening
- let the acm handle the module cache
- call $cache->save() after destroying data if necessary

5602 View | Annotate 03/04/2006 06:34 PM grahamje

Expire issued warnings after and admin configurable time
TODO: Add config option for this value to the ACP

5476 View | Annotate 01/19/2006 05:38 PM naderman

looks like I forgot to commit these two files :o

5472 View | Annotate 01/18/2006 08:26 PM acydburn

at least update the config variable if nothing is done. :)

5272 View | Annotate 10/19/2005 08:00 PM acydburn

- updated topic tracking code
- additional changes (mostly bugfixes)
- bart, if you update your user table with the user_lastmark field, set it to the user_lastvisit value ;)
- and last but not least, introducing some bugs in ucp main front (regarding topic tracking)

5172 View | Annotate 07/04/2005 02:06 PM psotfx

oopsie

5171 View | Annotate 07/04/2005 01:53 PM psotfx

Timberrrrrrrr … added new cron service to tidy expired persistent login keys.

5136 View | Annotate 04/30/2005 04:28 PM acydburn

- new queue invocation method