Wiki Application for CodeIgniter? Wiki Application for CodeIgniter? codeigniter codeigniter

Wiki Application for CodeIgniter?


I understand that you might want to learn to implement a large-scale app in CodeIgniter. However, in the case of a wiki, don't re-invent the wheel! There are tons of already available wiki software for you to use.

A few of the best that are written in PHP include:

  • PmWiki
  • dokuwiki
  • MediaWiki (used by Wikipedia)

This way you can integrate these well produced systems, which have a wealth of documentation to your advantage. Instead of wasting time creating the entire wiki from scratch, you can just integrate the rest of your CodeIgniter application into one of these ready-made offerings. Saving you some time, learning about their inner workings and giving your client/friend a better overall system.


Expression Engine is built on CodeIgniter and includes a wiki module.


It's not in CodeIgniter, but you can include the classes in the Text_Wiki PEAR package.

The PEAR page has almost zero documentation, but there seems to be a lot of information here.

This will just do the conversion of wiki markup to html. You have to do the image uploads, page views, permissions, etc yourself.