From: <car...@us...> - 2025-02-13 20:48:51
|
Revision: 11088 http://sourceforge.net/p/phpwiki/code/11088 Author: carstenklapp Date: 2025-02-13 20:48:50 +0000 (Thu, 13 Feb 2025) Log Message: ----------- add windows11 install readme Added Paths: ----------- trunk/doc/INSTALL.windows Added: trunk/doc/INSTALL.windows =================================================================== --- trunk/doc/INSTALL.windows (rev 0) +++ trunk/doc/INSTALL.windows 2025-02-13 20:48:50 UTC (rev 11088) @@ -0,0 +1,43 @@ +== General instructions tested under Windows 11: == + +- Install Apache 2.4 +- Install php-8.4.3 +- Add these lines to php.ini: (substitute your path to the php extension dir) +{{{ +extension_dir = "c:/Apache24/php/ext" +extension=gettext +extension=mbstring +extension=dba +extension=zip +extension=xml +intl.default_locale=en +}}} +- unzip phpwiki +- copy phpwiki-1.6.4 directory to c:\Apache24\htdocs\ or wherever you + installed apache and rename it to phpwiki +- copy phpwiki\config\config-dist.ini to phpwiki\config\config.ini + +Probably the quickest way to get up and running is with flat file +database instead downloading and installing a sql database. +- edit config.ini and search for these variables, removing the ; from + the start of the line: +{{{ +WIKI_NAME = "My PhpWiki" +ADMIN_USER =YourName +ADMIN_PASSWD ="password" +SESSION_SAVE_PATH = "/Apache24/htdocs/phpwiki_session" +USE_DB_SESSION = true +DATABASE_TYPE = file +DATABASE_PREFIX = phpwiki_ +DATABASE_DIRECTORY = "/Apache24/htdocs/phpwiki_db" +TEMP_DIR = +}}} + +Leaving TEMP_DIR blank will default to the TEMP env var +- Start apache +- Browse to http://localhost/phpwiki/index.php + +For more info read INSTALL in the main phpwiki dir and +doc\INSTALL.flatfile + +CarstenKlapp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |