tikiwiki
(php+mysql)
TikiWiki (Tiki) is your Groupware/CMS (Content Management System) solution. Tiki has the features you need:
- Wikis (like Wikipedia)
- Forums (like phpBB)
- Blogs (like WordPress)
- Articles (like Digg)
- Image Gallery (like Flickr)
- Map Server (like Google Maps)
- Link Directory (like DMOZ)
- Multilingual (like Babel Fish)
- Bug tracker (like Bugzilla)
- Free source software (LGPL)
install notes
Description : http://localhost/putYourPathHere/tikiwiki/ http://IPADR/putYourPathHere/tikiwiki/ #mysql mysql create database tikiwiki; GRANT ALL PRIVILEGES ON tikiwiki.* TO 'tikiwiki'@'localhost' WITH GRANT OPTION; SET PASSWORD FOR tikiwiki@localhost = password( 'tikiwiki' ) #PLEASE USE BETTER LOGIN+PASSWD!!! #nix cd ~ mkdir soft/tikiwiki cp Desktop/tikiwiki-1.9.11.tar.bz2 soft/tikiwiki mv ~/Desktop/tikiwiki-1.9.11.tar.bz2 /home/putYourUserNameHere/putYourPathHere cd /home/putYourUserNameHere/putYourPathHere bunzip2 tikiwiki-1.9.11.tar.bz2 tar xvf tikiwiki-1.9.11.tar ln -s tikiwiki-1.9.11 tikiwiki ln -s /home/putYourUserNameHere/putYourPathHere/tikiwiki /var/www/ #http://localhost/putYourPathHere/tikiwiki/tiki-install.php #perms cd /home/putYourUserNameHere/putYourPathHere/tikiwiki chmod -R 777 ./backups/ chmod -R 777 ./db/ chmod -R 777 ./dump/ chmod -R 777 ./img/wiki/ chmod -R 777 ./img/wiki_up/ chmod -R 777 ./img/trackers/ chmod -R 777 ./modules/cache/ chmod -R 777 ./temp/ chmod -R 777 ./temp/cache/ chmod -R 777 ./templates_c/ chmod -R 777 ./templates/ chmod -R 777 ./styles/ chmod -R 777 ./whelp/ chmod -R 777 ./lib/Galaxia/processes/ #reload #http://localhost/putYourPathHere/tikiwiki/tiki-install.php login / password (à changer dès que possible!!!) admin / admin #remove rm tiki-install.php #finished!
si vous avez des problèmes pour le répertoire /tmp : astuce en cas de problèmes de droits (safe_mode, open_basedir etc.)
http://doc.tikiwiki.org/tiki-index.php?page=Installation+Problems&bl=y
editer ./lib/init/initlib.php et donner un chemin fixe, p.ex.
/** Return system defined temporary directory.
* In Unix, this is usually /tmp
* In Windows, this is usually c:\windows\temp or c:\winnt\temp
* \static
*/
function tempdir() {
static $tempdir;
$tempdir = '/export/home/w3/weblocal/wiki/tmp';
/*
if (!$tempdir) {
$tempfile = tempnam(false,'');
$tempdir = dirname($tempfile);
@unlink($tempfile);
}
*/
return $tempdir;
}
}