History of UnderDevelopment/WiKi
Older Newer
2019-02-17 20:31:00 . . . . 84-236-105-82.pool.digikabel.hu [GDPR and PHP notes]
2019-02-17 20:05:31 . . . . 84-236-105-82.pool.digikabel.hu [GDPR and PHP notes]
2012-08-29 21:02:32 . . . . adsl3-75.pool.businesstel.hu [formatting examples should appear when editing]
2009-10-15 16:17:18 . . . . GuilhermeBuonfiglio [added information about Tavi2Tiki migration]
2009-10-15 07:41:11 . . . . MembersPage/MarcellGal [tavi formatting]
2007-10-06 11:08:55 . . . . MembersPage/MarcellGal [moved Jim's hint here]
2007-02-02 20:21:33 . . . . MembersPage/MarcellGal [sql hint]
2006-11-16 03:18:39 . . . . MembersPage/RichardBarrington [New menu structure page]
2006-11-15 05:00:56 . . . . MembersPage/MarcellGal [note about CPU quota]
2006-11-14 09:03:38 . . . . smtp.freedomwigs.com [Note about MYSQL backup]
2006-11-14 08:56:29 . . . . smtp.freedomwigs.com [Added note about menu v2.]
2006-11-14 08:51:40 . . . . smtp.freedomwigs.com [Another version, closer to current style...]
2006-11-14 05:54:20 . . . . MembersPage/RichardBarrington [Replys to comments]
2006-11-13 11:11:22 . . . . MembersPage/PhatBob [More adulation]
2006-11-13 07:45:02 . . . . MembersPage/DaveBrul [compliments on top menu]
2006-11-13 02:59:07 . . . . MembersPage/RichardBarrington [Comments and link to concept prototype]
2006-11-13 00:45:21 . . . . MembersPage/RichardBarrington [Usability comments on examples]
2006-11-12 05:10:24 . . . . MembersPage/JasonRussell [Tweaked it a bit, try the menu again.]
2006-11-11 12:37:24 . . . . MembersPage/JorgenKarlsson [Menus doesn't work.]
2006-11-11 04:51:16 . . . . MembersPage/JasonRussell [Added menu examples. Both horiz and vert]
2006-11-09 02:31:00 . . . . MembersPage/MarcellGal [top / or left menu]
2006-08-30 08:48:08 . . . . MembersPage/MarcellGal [vacyber sucks]
2006-03-24 22:57:28 . . . . MembersPage/MarcellGal [program made for reverting attack. currently run manually]
2006-03-16 04:43:08 . . . . MembersPage/MarcellGal [dropped some obsolete text]
2006-03-16 04:43:08 . . . . MembersPage/AntonLilja [What's wrong with the wiki dates?]
2006-03-16 04:43:08 . . . . MembersPage/AntonLilja [What's wrong with RecentChanges ?]
2006-03-16 04:43:08 . . . . MembersPage/AntonLilja
2006-03-16 04:43:08 . . . . MembersPage/MarcellGal [linked Meta Wiki http://www.vmri.hu/cgi-bin/w/meta.cgi]
2006-03-16 04:43:08 . . . . MembersPage/MarcellGal [minor cleanup and changed/unchanged flag]
2006-03-16 04:43:08 . . . . MembersPage/MarcellGal [mark turing issue]
2006-03-16 04:43:08 . . . . MembersPage/MarcellGal [turing test related notes]
2006-03-16 04:43:08 . . . . MembersPage/MarcellGal [we keep losing data]
2006-03-16 04:43:08 . . . . MembersPage/MarcellGal [turing-test problems: related wishlist]


Changes by last author:

Added:
* Not currently annoying users with the GDPR nonsense (which basically punishes the user when using fresh browser or purging cookies - effectively taking away the users' freedom while claiming the opposite - with laws, that's not unusual).
Added:
----

PHP notes

Should check some deprecated vars, namely avoid $PHP_SELF ( see [PHP docs] ) and $_POST needed now instead of deprecated $HTTP_POST_VARS eg.:

<CODE>

- "x_var2" => $HTTP_POST_VARS['formvar2'],

+ "x_var2" => $_POST['formvar2'],

-<form id="payform1" method=POST action="<?php echo $PHP_SELF; ?>" >

+<form id="payform1" method=POST action="" >

Otherwise use $_SERVER['PHP_SELF'] instead of $PHP_SELF

</CODE>