Revision history for Mod009fAdminUsers


Revision [23248]

Last edited on 2016-05-20 07:38:47 by JavaWoman [Replaces old-style internal links with new pipe-split links.]
Additions:
**[[http://web.archive.org/web/20040826080337/http://www.wakkawiki.com/SticK | SticK]] **
** [[http://web.archive.org/web/20040823064948/http://www.wakkawiki.com/SilBaer | SilBaer]] **
[[http://web.archive.org/web/20040813204526/http://www.wakkawiki.com/PsudoAdminUser | PsudoAdminUser @ WakkaWiki]]
Deletions:
**[[http://web.archive.org/web/20040826080337/http://www.wakkawiki.com/SticK SticK]] **
** [[http://web.archive.org/web/20040823064948/http://www.wakkawiki.com/SilBaer SilBaer]] **
[[http://web.archive.org/web/20040813204526/http://www.wakkawiki.com/PsudoAdminUser PsudoAdminUser @ WakkaWiki]]


Revision [19267]

Edited on 2008-01-28 00:14:45 by JavaWoman [Modified links pointing to docs server]

No Differences

Revision [17182]

Edited on 2007-07-07 08:18:56 by JavaWoman [standardized link to WakkaWiki origin]
Additions:
**[[http://web.archive.org/web/20040826080337/http://www.wakkawiki.com/SticK SticK]] **
Deletions:
** [[http://web.archive.org/web/20040826080337/http://www.wakkawiki.com/SticK SticK]] **


Revision [17181]

Edited on 2007-07-07 08:18:12 by JavaWoman [s]
Additions:
[[http://web.archive.org/web/20040813204526/http://www.wakkawiki.com/PsudoAdminUser PsudoAdminUser @ WakkaWiki]]
Deletions:
[[http://web.archive.org/web/20040813204526/http://www.wakkawiki.com/PsudoAdminUser WakkaWiki PsudoAdminUser]]


Revision [17141]

Edited on 2007-07-07 04:13:21 by JavaWoman [web.archive.org links for wakkawiki]
Additions:
[[http://web.archive.org/web/20040813204526/http://www.wakkawiki.com/PsudoAdminUser WakkaWiki PsudoAdminUser]]
Deletions:
[http://web.archive.org/web/20040813204526/http://www.wakkawiki.com/PsudoAdminUser WakkaWiki PsudoAdminUser]]


Revision [17140]

Edited on 2007-07-07 04:12:51 by JavaWoman [web.archive.org links for wakkawiki]
Additions:
==== Wikka Mod 009 ====
Type: Feature Addition
----
===Credit:===
** [[http://web.archive.org/web/20040826080337/http://www.wakkawiki.com/SticK SticK]] **
""WakkaAdminHack"" //Warning: don't go to original site or follow links on ""SticK""'s page: infected!//
and
** [[http://web.archive.org/web/20040823064948/http://www.wakkawiki.com/SilBaer SilBaer]] **
[http://web.archive.org/web/20040813204526/http://www.wakkawiki.com/PsudoAdminUser WakkaWiki PsudoAdminUser]]
----

Added the ability to have admin users. Admin users can override things such as the ACL lists and have the ability to delete pages and comments.

Instructions to add admin users:
- Edit the wakka.config.php file.
- Modify the admin_users line, adding additional Wiki Names between the quotes, separated by commas....
e.g., "admin_users" => """JsnX, HendrikMans, AnotherCoolAdmin""",

Modified files:
/wakka.php
actions/footer.php

There is a bug in Stick's instructions. The admin user list is not trimmed correctly. Modified the function to read as follows.....

%%(php)
//returns true if user is listed in configuration list as admin
function IsAdmin() {
$adminstring = $this->config["admin_users"];
$adminarray = explode(',' , $adminstring);

foreach ($adminarray as $admin) {
if (trim($admin) == $this->GetUserName()) return true;
}
}
Deletions:
==== Wikka Mod 009 ====
Type: Feature Addition
----
===Credit:===
** ""SticK"" **
http://www.twotonllama.com/wiki/?wakka=WakkaAdminHack
and
** ""SilBaer"" **
http://www.wakkawiki.com/PsudoAdminUser
----

Added the ability to have admin users. Admin users can override things such as the ACL lists and have the ability to delete pages and comments.

Instructions to add admin users:
- Edit the wakka.config.php file.
- Modify the admin_users line, adding additional Wiki Names between the quotes, separated by commas....
e.g., "admin_users" => """JsnX, HendrikMans, AnotherCoolAdmin""",

Modified files:
/wakka.php
actions/footer.php

There is a bug in Stick's instructions. The admin user list is not trimmed correctly. Modified the function to read as follows.....

%%(php)
//returns true if user is listed in configuration list as admin
function IsAdmin() {
$adminstring = $this->config["admin_users"];
$adminarray = explode(',' , $adminstring);

foreach ($adminarray as $admin) {
if (trim($admin) == $this->GetUserName()) return true;
}
}


Revision [16953]

Edited on 2007-05-31 23:27:31 by JsnX [Reverted]
Additions:
==== Wikka Mod 009 ====
Type: Feature Addition
----
===Credit:===
** ""SticK"" **
http://www.twotonllama.com/wiki/?wakka=WakkaAdminHack
and
** ""SilBaer"" **
http://www.wakkawiki.com/PsudoAdminUser
----

Added the ability to have admin users. Admin users can override things such as the ACL lists and have the ability to delete pages and comments.

Instructions to add admin users:
- Edit the wakka.config.php file.
- Modify the admin_users line, adding additional Wiki Names between the quotes, separated by commas....
e.g., "admin_users" => """JsnX, HendrikMans, AnotherCoolAdmin""",

Modified files:
/wakka.php
actions/footer.php

There is a bug in Stick's instructions. The admin user list is not trimmed correctly. Modified the function to read as follows.....

%%(php)
//returns true if user is listed in configuration list as admin
function IsAdmin() {
$adminstring = $this->config["admin_users"];
$adminarray = explode(',' , $adminstring);

foreach ($adminarray as $admin) {
if (trim($admin) == $this->GetUserName()) return true;
}
}
Deletions:
==== Wikka Mod 009 ====
Type: Feature Addition
----
===Credit:===
** ""SticK"" **
http://www.twotonllama.com/wiki/?wakka=WakkaAdminHack
and
** ""SilBaer"" **
http://www.wakkawiki.com/PsudoAdminUser
----

Added the ability to have admin users. Admin users can override things such as the ACL lists and have the ability to delete pages and comments.

Instructions to add admin users:
- Edit the wakka.config.php file.
- Modify the admin_users line, adding additional Wiki Names between the quotes, separated by commas....
e.g., "admin_users" => """JsnX, HendrikMans, AnotherCoolAdmin""",

Modified files:
/wakka.php
actions/footer.php

There is a bug in Stick's instructions. The admin user list is not trimmed correctly. Modified the function to read as follows.....

%%(php)
//returns true if user is listed in configuration list as admin
function IsAdmin() {
$adminstring = $this->config["admin_users"];
$adminarray = explode(',' , $adminstring);

foreach ($adminarray as $admin) {
if (trim($admin) == $this->GetUserName()) return true;
}
}


Revision [16752]

Edited on 2007-05-31 10:44:16 by Xd4Og9 [Reverted]
Additions:
==== Wikka Mod 009 ====
Type: Feature Addition
----
===Credit:===
** ""SticK"" **
http://www.twotonllama.com/wiki/?wakka=WakkaAdminHack
and
** ""SilBaer"" **
http://www.wakkawiki.com/PsudoAdminUser
----

Added the ability to have admin users. Admin users can override things such as the ACL lists and have the ability to delete pages and comments.

Instructions to add admin users:
- Edit the wakka.config.php file.
- Modify the admin_users line, adding additional Wiki Names between the quotes, separated by commas....
e.g., "admin_users" => """JsnX, HendrikMans, AnotherCoolAdmin""",

Modified files:
/wakka.php
actions/footer.php

There is a bug in Stick's instructions. The admin user list is not trimmed correctly. Modified the function to read as follows.....

%%(php)
//returns true if user is listed in configuration list as admin
function IsAdmin() {
$adminstring = $this->config["admin_users"];
$adminarray = explode(',' , $adminstring);

foreach ($adminarray as $admin) {
if (trim($admin) == $this->GetUserName()) return true;
}
}
Deletions:
==== Wikka Mod 009 ====
Type: Feature Addition
----
===Credit:===
** ""SticK"" **
http://www.twotonllama.com/wiki/?wakka=WakkaAdminHack
and
** ""SilBaer"" **
http://www.wakkawiki.com/PsudoAdminUser
----

Added the ability to have admin users. Admin users can override things such as the ACL lists and have the ability to delete pages and comments.

Instructions to add admin users:
- Edit the wakka.config.php file.
- Modify the admin_users line, adding additional Wiki Names between the quotes, separated by commas....
e.g., "admin_users" => """JsnX, HendrikMans, AnotherCoolAdmin""",

Modified files:
/wakka.php
actions/footer.php

There is a bug in Stick's instructions. The admin user list is not trimmed correctly. Modified the function to read as follows.....

%%(php)
//returns true if user is listed in configuration list as admin
function IsAdmin() {
$adminstring = $this->config["admin_users"];
$adminarray = explode(',' , $adminstring);

foreach ($adminarray as $admin) {
if (trim($admin) == $this->GetUserName()) return true;
}
}


Revision [528]

Edited on 2004-05-30 13:00:41 by JsnX [Reverted]
Additions:
==== Wikka Mod 009 ====
Type: Feature Addition
----
===Credit:===
** ""SticK"" **
http://www.twotonllama.com/wiki/?wakka=WakkaAdminHack
and
** ""SilBaer"" **
http://www.wakkawiki.com/PsudoAdminUser
----

Added the ability to have admin users. Admin users can override things such as the ACL lists and have the ability to delete pages and comments.

Instructions to add admin users:
- Edit the wakka.config.php file.
- Modify the admin_users line, adding additional Wiki Names between the quotes, separated by commas....
e.g., "admin_users" => """JsnX, HendrikMans, AnotherCoolAdmin""",

Modified files:
/wakka.php
actions/footer.php

There is a bug in Stick's instructions. The admin user list is not trimmed correctly. Modified the function to read as follows.....

%%(php)
//returns true if user is listed in configuration list as admin
function IsAdmin() {
$adminstring = $this->config["admin_users"];
$adminarray = explode(',' , $adminstring);

foreach ($adminarray as $admin) {
if (trim($admin) == $this->GetUserName()) return true;
}
}
%%
Deletions:
==== Wikka Mod 009 ====
Type: Feature Addition
----
===Credit:===
** ""SticK"" **
http://www.twotonllama.com/wiki/?wakka=WakkaAdminHack
and
** ""SilBaer"" **
----

Added the ability to have admin users. Admin users can override things such as the ACL lists and have the ability to delete pages and comments.


Modified files:
/wakka.php
actions/footer.php


Revision [58]

The oldest known version of this page was created on 2004-03-09 03:10:16 by JsnX [Reverted]
Valid XHTML :: Valid CSS: :: Powered by WikkaWiki