SearchWiki:

Infos und Hinweise

(Aktive) AGs von attac-Dresden

Die Nachbarn
siehe auch https://www.attac.de/was-ist-attac/strukturen/attac-netzwerk/regionalgruppen: * Attac an der TU Dresden - attac Campusgruppe der TU Dresden * attac Polen (in der Landessprache) ... die anderen haben leider keine Webseiten.

weitere Links, die keine Beziehung zu attac haben
Wir haben keinerlei Einfluss auf die Gestaltung und die Inhalte der gelinkten Seiten. Deshalb distanzieren wir uns hiermit ausdrücklich von allen Inhalten aller gelinkten Seiten. * AFS (American Field Service) Komitee Dresden - internationales Jugendaustauschprogramm * Kandidatenwatch - löcher' Deinen Wahlkreiskandidaten! * Wahl-o-mat der BZpB

(Auswahlleiste bearbeiten)

Recent Changes Printable View Page History Edit Page
<< | Variables | Layout Variables >>

These are some basic configuration variables for Pm Wiki. Normally these variables are set in your local/config.php file (see Local Customizations).

$ScriptUrl
The url that is used to access pmwiki.php on your server. PmWiki normally sets the value of this variable based on server environment variables, but you may need to set it explicitly (e.g. if you change PmWiki URL):
        $ScriptUrl = 'http://server.com/pmwiki/pmwiki.php';

$PubDirUrl
The url that is used to access the pub/ directory that is part of your PmWiki distribution, containing CSS and other files that need to be available to a browser. Normally determined from the server's environment variables, but you may need to set it explicitly if the default isn't correct.
        $PubDirUrl = 'http://server.com/pub';

$WikiTitle
The name of the wiki. Defaults to "PmWiki" but you can change this to almost any name you wish.
        $WikiTitle = 'SuperWiki';

$DefaultPasswords
The array of site-wide passwords to be used if no password has been set for a group or page (see Passwords and Passwords Admin). All default passwords are empty except for the 'admin' password. Each entry in $DefaultPasswords can also be an array of accepted passwords.
        $DefaultPasswords['admin'] = '1WUbGMq.PbUEk';
        $DefaultPasswords['edit'] = 
          array('1WUbGMq.PbUEk',WIZ2DVQpQprf2');

$AuthRealmFmt
Sets the value of the "realm" authentication parameter used in HTTP Basic authentication for PmWiki. By default this is set to '$WikiTitle', which means one realm for the whole site.
        $AuthRealmFmt = '$Group';   # use a realm for each Wiki Group
        $AuthRealmFmt = '$PageName';    # per-page realm

$TimeFmt
The format to be used for formatting dates and times, based on PHP's strftime function and the current locale. See http://www.php.net/strftime for more details about available formats for this string.
        $TimeFmt = "%B %d, %Y, at %I:%M %p";    # default
        $TimeFmt = "%m/%d/%Y %H:%M";            # 02/17/2002 00:14

$DefaultGroup
The default Wiki Group for the site. Defaults to "Main".
        $DefaultGroup = 'Home';

$DefaultTitle
The default "home" page for a Wiki Group. Defaults to "HomePage", although PmWiki also allows the name of the group itself to be used as a home page for a group.
        $DefaultTitle = 'IndexPage';

$AuthorGroup
The Wiki Group for user profiles. Defaults to "Profiles".
        $AuthorGroup = 'Users';

$WikiDir
The directory where edited pages are stored. Defaults to "wiki.d" in the current directory, but you can set it to be any directory you want. Note that the webserver process generally must have write permissions to this directory.

$WikiLibDirs
An array of directories where page files are being stored. This usually consists of $WikiDir and "wikilib.d", but a Wiki Administrator can add more directories to the list and/or change the order in which directories are searched for page files. A page's contents is always read from the first directory in $WikiLibDirs that contains a page file matching the page's name.

$ForceMkdir
When PmWiki is about to create a directory (either to hold pages or uploads), it first performs some permissions and ownership checks to make sure that creating the directory will be "safe". Setting $ForceMkdir=1 will cause PmWiki to bypass these checks and just create the directory (if it can).

$Newline
is a string used to represent newlines in the page files. It is represented in octal notation. It can be anything but a newline or something that will occur in the markup text itself. Example:
        $Newline = "\262";                # default
        $Newline = "\376";                # sometimes a good value

$EnableIMSCaching
When set, tells PmWiki to allow browsers to cache pages and respond to HTTP If-Modified-Since headers. This is normally off by default to keep WikiAdministrators from going bonkers while setting up and debugging layout templates and local customizations.
        $EnableIMSCaching = 1;            # enable browser caches

Edit Page - Page History - Printable View - Recent Changes - WikiHelp - SearchWiki
Page last modified on September 22, 2004, at 04:34 PM