9086c9ad77db90633e0629e9e86a88366265ded0
bernd Webapp-Installer, erste Ver...

bernd authored 15 years ago

1) <?php
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4) 
Bernd Wurst Copyright year update

Bernd Wurst authored 6 years ago

5) Written 2008-2018 by schokokeks.org Hosting, namely
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

6)   Bernd Wurst <bernd@schokokeks.org>
7)   Hanno Böck <hanno@schokokeks.org>
8) 
9) To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
10) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

12) http://creativecommons.org/publicdomain/zero/1.0/
13) 
14) Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code.
15) */
bernd Webapp-Installer, erste Ver...

bernd authored 15 years ago

16) 
17) require_once('inc/debug.php');
18) 
19) require_once('webapp-installer.php');
20) 
21) 
22) function validate_data($post)
23) {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

24)     DEBUG('Validating Data:');
25)     DEBUG($post);
26)     $fields = array('adminuser', 'adminpassword', 'adminemail', 'wikiname');
27)     foreach ($fields as $field) {
28)         if ((! isset($post[$field])) || $post[$field] == '') {
29)             system_failure('Nicht alle Werte angegeben ('.$field.')');
30)         }
31)     }
bernd Webapp-Installer, erste Ver...

bernd authored 15 years ago

32) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

33)     $dbdata = create_webapp_mysqldb('mediawiki', $post['wikiname']);
bernd Webapp-Installer, erste Ver...

bernd authored 15 years ago

34) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

35)     $adminuser =  ucfirst(chop($post['adminuser']));
bernd Bei MediaWiki-Usernames mus...

bernd authored 13 years ago

36) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

37)     $salt = random_string(8);
38)     $salthash = ':B:' . $salt . ':' . md5($salt . '-' . md5($post['adminpassword']));
Hanno remove whitespace in empty...

Hanno authored 5 years ago

39) 
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

40)     $data = "adminuser={$adminuser}
bernd Webapp-Installer, erste Ver...

bernd authored 15 years ago

41) adminpassword={$salthash}
42) adminemail={$post['adminemail']}
43) wikiname={$post['wikiname']}
bernd Frage Datenbank-Kürzel nich...

bernd authored 15 years ago

44) dbname={$dbdata['dbname']}
45) dbuser={$dbdata['dbuser']}
46) dbpass={$dbdata['dbpass']}";
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

47)     DEBUG($data);
48)     return $data;