Index: trunk/phpwiki/newcodebase/LocalSettings.php |
— | — | @@ -6,23 +6,22 @@ |
7 | 7 | |
8 | 8 | # URLs for the wiki site |
9 | 9 | # |
10 | | -$wgServer = "http://chesoo.fokus.gmd.de/cvswp"; |
11 | | -$wgStyleSheetPath = "$wgServer/stylesheets"; |
| 10 | +$wgServer = "http://www.myhost.com"; |
| 11 | +$wgStyleSheetPath = "$wgServer/style"; |
12 | 12 | $wgScript = "/wiki.phtml"; |
13 | 13 | $wgRedirectScript = "/redirect.phtml"; |
14 | 14 | $wgArticlePath = "$wgServer$wgScript?title=$1"; |
15 | | -$wgUploadPath = "$wgServer/images"; |
16 | | -$wgUploadDirectory = "/var/www/htdocs/cvswp/images"; |
| 15 | +$wgUploadPath = "http://www.myhost.com/upload"; |
| 16 | +$wgUploadDirectory = "/usr/local/apache/htdocs/upload"; |
17 | 17 | $wgLogo = "$wgUploadPath/wiki.png"; |
18 | | -$wgLanguageCode = "en"; |
19 | 18 | |
20 | 19 | # MySQL settings |
21 | 20 | # |
22 | | -$wgDBserver = "localhost"; |
| 21 | +$wgDBserver = "127.0.0.1"; |
23 | 22 | $wgDBname = "wikidb"; |
24 | | -$wgDBuser = "nobody"; |
25 | | -$wgDBpassword = "suppball"; |
26 | | -$wgDBadminpassword = "suppball"; |
| 23 | +$wgDBuser = "wikiuser"; |
| 24 | +$wgDBpassword = "userpass"; |
| 25 | +$wgDBadminpassword = "adminpass"; |
27 | 26 | $wgDBminWordLen = 3; |
28 | 27 | |
29 | 28 | # Turn this on during database maintenance |
— | — | @@ -32,7 +31,7 @@ |
33 | 32 | # Turn this on to get HTML debug comments |
34 | 33 | # |
35 | 34 | # $wgDebugComments = true; |
36 | | -# $wgDebugLogFile = "/usr/local/apache/htdocs/upload/logfile"; |
| 35 | +$wgDebugLogFile = "/usr/local/apache/htdocs/upload/logfile"; |
37 | 36 | |
38 | 37 | # Which interwiki prefix represents _this_ wiki? This |
39 | 38 | # only needs to be set when installing the software on |
Index: trunk/phpwiki/newcodebase/Language.php |
— | — | @@ -433,8 +433,8 @@ |
434 | 434 | "showpreview" => "Show preview", |
435 | 435 | "blockedtitle" => "User is blocked", |
436 | 436 | "blockedtext" => "Your user name or IP address has been blocked by $1. |
437 | | -The reason given is this:<br>$2<p>You may contact the administrator to |
438 | | -discuss the block.", |
| 437 | +The reason given is this:<br>''$2''<p>You may contact $1 or one of the other |
| 438 | +[[Wikipedia:administrators|administrators]] to discuss the block.", |
439 | 439 | "newarticle" => "(New)", |
440 | 440 | "newarticletext" => "Put your text for the new page here.", |
441 | 441 | "noarticletext" => "(There is currently no text in this page)", |
— | — | @@ -864,7 +864,7 @@ |
865 | 865 | |
866 | 866 | # What links here |
867 | 867 | # |
868 | | -"whatlinkshere" => "What links here", |
| 868 | +"whatlinkshere" => "What links here?", |
869 | 869 | "notargettitle" => "No target", |
870 | 870 | "notargettext" => "You have not specified a target page or user |
871 | 871 | to perform this function on.", |