Recent Changes - Search:

CZjfaD , [url=http://nnredzsskgao.com/]nnredzsskgao[/url], [link=http://orsiupreszzr.com/]orsiupreszzr[/link], http://ajihppvvwlic.com/

PmWiki Installation

PmWiki.Installation History

Hide minor edits - Show changes to output

March 16, 2010, at 11:33 AM EST by Rathnasree -
Changed lines 1-109 from:
cdODSp <a href="http://yxovlfmbucdd.com/">yxovlfmbucdd</a>, [url=http://ymuaoyliinck.com/]ymuaoyliinck[/url], [link=http://shbwwztwckcp.com/]shbwwztwckcp[/link], http://wlourxwzxlxt.com/
to:
(:title PmWiki Installation :)
%audience% administrators (basic)
This page explains how to download and install PmWiki 2.1. Here's a list of related pages:

* [[Requirements]] - Requirements for installing PmWiki.
* [[Upgrades]] - How to upgrade an existing installation.
* [[WikiFarms]] - Running multiple wikis from a single installation.
* [[ChangeLog]] - New features and bug fixes that are available.

Improvements to these instructions are always appreciated. Just report any problems you encounter to the pmwiki-users [[mailing list(s)]] or use the [[PITS:PITS |PmWiki Issue Tracking System]].

!! Installing PmWiki

!!! 1. Download
Download the latest version of PmWiki as a zip archive ([[(http://www.pmwiki.org/pub/pmwiki/)pmwiki-latest.zip]]) or a gzipped tarball ([[(http://www.pmwiki.org/pub/pmwiki/)pmwiki-latest.tgz]]) from [[http://www.pmwiki.org/pub/pmwiki/]].


!!! [[#unpack]] 2. Unpack
Unpack the archive ([@tar zxvf pmwiki-latest.tgz@] or [@unzip pmwiki-latest.zip@]). This will create a ''pmwiki-x.y.z'' directory containing the PmWiki software. For example, the current "latest" should unpack to a directory named ''{$Version}''. The files in this directory include:

README.txt An introductory document
pmwiki.php The main PmWiki script
local/ Configuration scripts (local configuration files)
cookbook/ Recipes (add-ons) from the [[(Cookbook:)Cookbook]]
docs/ Brief documentation, sample configuration scripts
pub/ Publicly accessible files
css/ Extra CSS stylesheet files
skins/ Layout templates for [[Cookbook:Skins|custom]] look and feel
scripts/ Scripts that are part of PmWiki
wikilib.d/ Bundled default PmWiki pages

The ''pmwiki-x.y.z'' directory needs to be placed into a location accessible by your webserver (e.g., in a ''public_html'' directory of some sort). You can place files and directories using a number of methods -- FTP, or a Unix [@mv@] or [@cp@] command generally does the job.

->%note% Note: It's probably also a good idea to change the "''pmwiki-x.y.z''" directory name to be simply "''pmwiki''".


!!! [[#directories]] 3. Create directories
[[#dirsetup]]In most cases PmWiki will do this for you.
Open a web browser to the ''pmwiki.php'' script on the server (i.e., not the one on your local computer or accessed using a [=file://...=] URL). PmWiki will then analyze your system configuration and provide instructions (if needed) for creating the ''wiki.d/'' directory which will be used to hold the pages created for your site.

Otherwise, there are two ways to achieve this.

->3a. You can create the ''wiki.d/'' directory manually, and then give it full write permissions (i.e., "[@chmod 777 wiki.d@]"). Use this method when "safe mode" is activated in the servers PHP installation.

->3b. On some systems you can let PmWiki create ''wiki.d/'' by temporarily changing the permissions on the directory containing the ''pmwiki.php'' file to 2777. In Unix this is commonly done by changing to the directory containing ''pmwiki.php'' and executing the command

chmod 2777 .

->(note the dot at the end). The [@chmod@] command also works in many FTP programs. Creating ''wiki.d/'' in this manner will (1) make the directory writable so the web server can create the data directory it needs for the wiki files, (2) preserve group ownership of the directory so the installer account can manipulate the files created in this directory, and (3) make it more difficult for other accounts on the same server to access the files in ''wiki.d/''.

After establishing directory permissions, try opening a browser to the ''pmwiki.php'' script again. If all is well, the ''wiki.d'' directory will have been created and you'll see the default home page.

Important: If you used method 3b, you should reset permissions by executing "[@chmod 755 .@]" in the directory containing pmwiki.php.

[[#dirsetupend]]
!!! 4. Initialize
Check out [[Initial Setup Tasks]] for other tasks you may want to perform to begin customizing your PmWiki installation. You might also want to peruse the [[Release Notes]] for further information.


!!! 5. Set language
If you want to use PmWiki in a different language download the international language pack as zip archive ([[(http://www.pmwiki.org/pub/pmwiki/)i18n.zip]]) or as gzipped tarball ([[(http://www.pmwiki.org/pub/pmwiki/)i18n.tgz]]) from [[http://www.pmwiki.org/pub/pmwiki/]]. Then extract it and copy the files into the ''wikilib.d/'' directory as described above.

There are two directories in the decompressed i18n archive, ''scripts'' and ''wikilib.d''. Copy the files respectively contained in these directories to the ''scripts'' and ''wikilib.d'' of your PmWiki directory. For example, for French localization, PmWikiFr.* and PmWiki.* must be contained in the '''same''' directory.

Then, enable localization by adding an instruction to local/config.php to load the language translation page of your choice. For instance, [@XLPage('fr','PmWikiFr.XLPage');@] loads the French language page PmWikiFr.XLPage.

Read more about this on [[Internationalizations]].

!! [[#notes]] Notes

* The PmWiki distribution deliberately doesn't include an ''index.php'' file. You can easily add your own "wrapper script" in the same directory as ''pmwiki.php''. Create a new file called ''index.php'' with the following single line of text (missing a closing "[@ ?>@]" tag deliberately):

-->[@<?php include('pmwiki.php');@]

Resist the temptation to rename ''pmwiki.php'' to ''index.php'' because if you rename the file it will not be overwritten during an upgrade.

* If using the Unix ''tar'' command to unpack the archive in step 2 above, be sure that the files are created with sufficient permissions for the webserver to be able to access them. Usually you can ensure this by typing @@umask 002@@ on the command line before unpacking the tar file.

* When installing on Windows you should take a look at [[Cookbook:SimultaneousEdits]] to enable [[simultaneous edits]] on that platform.

* Additional tips can be found at [[Troubleshooting]].

%trail%<<|[[Documentation Index]]|>>


>>faq<< [[#faq]]

Q: How do I make pmwiki.php the default page for a website? Should I rename pmwiki.php to index.php?

A: Renaming pmwiki.php is not recommended. Instead, create an ''index.php'' file that contains the single line:

->[@<?php include_once('pmwiki.php');@]

You may also want to check [[Cookbook:CleanUrls]].


Q: Why does pmwiki.org appear to have a directory structure rather than "?n=pagename" in urls?

A: Pmwiki.org uses a variant of [[Cookbook:CleanUrls]].


Q: Is it possible to move wiki.d to /tmp/persistent/wiki.d (a new sourceforge rule)?

A: Sourceforge suggests moving everything to /tmp/persistent/new-folder-of-your-choice and creating a symbolic link to the new folder on /tmp . It works -- see [[Cookbook:SourceForgeServers]].


Q: How can I run PmWiki on a standalone (offline, portable) machine ?

A: See [[Cookbook:Standalone]].
March 16, 2010, at 08:53 AM EST by zhmjdgn - XfhWcxCq
Changed lines 1-109 from:
(:title PmWiki Installation :)
%audience% administrators (basic)
This page explains how to download and install PmWiki 2.1. Here's a list of related pages:

* [[Requirements]] - Requirements for installing PmWiki.
* [[Upgrades]] - How to upgrade an existing installation.
* [[WikiFarms]] - Running multiple wikis from a single installation.
* [[ChangeLog]] - New features and bug fixes that are available.

Improvements to these instructions are always appreciated. Just report any problems you encounter to the pmwiki-users [[mailing list(s)]] or use the [[PITS:PITS |PmWiki Issue Tracking System]].

!! Installing PmWiki

!!! 1. Download
Download the latest version of PmWiki as a zip archive ([[(http://www.pmwiki.org/pub/pmwiki/)pmwiki-latest.zip]]) or a gzipped tarball ([[(http://www.pmwiki.org/pub/pmwiki/)pmwiki-latest.tgz]]) from [[http://www.pmwiki.org/pub/pmwiki/]].


!!! [[#unpack]] 2. Unpack
Unpack the archive ([@tar zxvf pmwiki-latest.tgz@] or [@unzip pmwiki-latest.zip@]). This will create a ''pmwiki-x.y.z'' directory containing the PmWiki software. For example, the current "latest" should unpack to a directory named ''{$Version}''. The files in this directory include:

README.txt An introductory document
pmwiki.php The main PmWiki script
local/ Configuration scripts (local configuration files)
cookbook/ Recipes (add-ons) from the [[(Cookbook:)Cookbook]]
docs/ Brief documentation, sample configuration scripts
pub/ Publicly accessible files
css/ Extra CSS stylesheet files
skins/ Layout templates for [[Cookbook:Skins|custom]] look and feel
scripts/ Scripts that are part of PmWiki
wikilib.d/ Bundled default PmWiki pages

The ''pmwiki-x.y.z'' directory needs to be placed into a location accessible by your webserver (e.g., in a ''public_html'' directory of some sort). You can place files and directories using a number of methods -- FTP, or a Unix [@mv@] or [@cp@] command generally does the job.

->%note% Note: It's probably also a good idea to change the "''pmwiki-x.y.z''" directory name to be simply "''pmwiki''".


!!! [[#directories]] 3. Create directories
[[#dirsetup]]In most cases PmWiki will do this for you.
Open a web browser to the ''pmwiki.php'' script on the server (i.e., not the one on your local computer or accessed using a [=file://...=] URL). PmWiki will then analyze your system configuration and provide instructions (if needed) for creating the ''wiki.d/'' directory which will be used to hold the pages created for your site.

Otherwise, there are two ways to achieve this.

->3a. You can create the ''wiki.d/'' directory manually, and then give it full write permissions (i.e., "[@chmod 777 wiki.d@]"). Use this method when "safe mode" is activated in the servers PHP installation.

->3b. On some systems you can let PmWiki create ''wiki.d/'' by temporarily changing the permissions on the directory containing the ''pmwiki.php'' file to 2777. In Unix this is commonly done by changing to the directory containing ''pmwiki.php'' and executing the command

chmod 2777 .

->(note the dot at the end). The [@chmod@] command also works in many FTP programs. Creating ''wiki.d/'' in this manner will (1) make the directory writable so the web server can create the data directory it needs for the wiki files, (2) preserve group ownership of the directory so the installer account can manipulate the files created in this directory, and (3) make it more difficult for other accounts on the same server to access the files in ''wiki.d/''.

After establishing directory permissions, try opening a browser to the ''pmwiki.php'' script again. If all is well, the ''wiki.d'' directory will have been created and you'll see the default home page.

Important: If you used method 3b, you should reset permissions by executing "[@chmod 755 .@]" in the directory containing pmwiki.php.

[[#dirsetupend]]
!!! 4. Initialize
Check out [[Initial Setup Tasks]] for other tasks you may want to perform to begin customizing your PmWiki installation. You might also want to peruse the [[Release Notes]] for further information.


!!! 5. Set language
If you want to use PmWiki in a different language download the international language pack as zip archive ([[(http://www.pmwiki.org/pub/pmwiki/)i18n.zip]]) or as gzipped tarball ([[(http://www.pmwiki.org/pub/pmwiki/)i18n.tgz]]) from [[http://www.pmwiki.org/pub/pmwiki/]]. Then extract it and copy the files into the ''wikilib.d/'' directory as described above.

There are two directories in the decompressed i18n archive, ''scripts'' and ''wikilib.d''. Copy the files respectively contained in these directories to the ''scripts'' and ''wikilib.d'' of your PmWiki directory. For example, for French localization, PmWikiFr.* and PmWiki.* must be contained in the '''same''' directory.

Then, enable localization by adding an instruction to local/config.php to load the language translation page of your choice. For instance, [@XLPage('fr','PmWikiFr.XLPage');@] loads the French language page PmWikiFr.XLPage.

Read more about this on [[Internationalizations]].

!! [[#notes]] Notes

* The PmWiki distribution deliberately doesn't include an ''index.php'' file. You can easily add your own "wrapper script" in the same directory as ''pmwiki.php''. Create a new file called ''index.php'' with the following single line of text (missing a closing "[@ ?>@]" tag deliberately):

-->[@<?php include('pmwiki.php');@]

Resist the temptation to rename ''pmwiki.php'' to ''index.php'' because if you rename the file it will not be overwritten during an upgrade.

* If using the Unix ''tar'' command to unpack the archive in step 2 above, be sure that the files are created with sufficient permissions for the webserver to be able to access them. Usually you can ensure this by typing @@umask 002@@ on the command line before unpacking the tar file.

* When installing on Windows you should take a look at [[Cookbook:SimultaneousEdits]] to enable [[simultaneous edits]] on that platform.

* Additional tips can be found at [[Troubleshooting]].

%trail%<<|[[Documentation Index]]|>>


>>faq<< [[#faq]]

Q: How do I make pmwiki.php the default page for a website? Should I rename pmwiki.php to index.php?

A: Renaming pmwiki.php is not recommended. Instead, create an ''index.php'' file that contains the single line:

->[@<?php include_once('pmwiki.php');@]

You may also want to check [[Cookbook:CleanUrls]].


Q: Why does pmwiki.org appear to have a directory structure rather than "?n=pagename" in urls?

A: Pmwiki.org uses a variant of [[Cookbook:CleanUrls]].


Q: Is it possible to move wiki.d to /tmp/persistent/wiki.d (a new sourceforge rule)?

A: Sourceforge suggests moving everything to /tmp/persistent/new-folder-of-your-choice and creating a symbolic link to the new folder on /tmp . It works -- see [[Cookbook:SourceForgeServers]].


Q: How can I run PmWiki on a standalone (offline, portable) machine ?

A: See [[Cookbook:Standalone]].
to:
cdODSp <a href="http://yxovlfmbucdd.com/">yxovlfmbucdd</a>, [url=http://ymuaoyliinck.com/]ymuaoyliinck[/url], [link=http://shbwwztwckcp.com/]shbwwztwckcp[/link], http://wlourxwzxlxt.com/
Edit - History - Print - Recent Changes - Search
Page last modified on March 16, 2010, at 11:33 AM EST