Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to work on the XAMPP & mongodb in windows?

Can any one let me know how to start working on the MongoDB in xampp(windows) with examples of applications?

like image 800
Sandesh Avatar asked Sep 03 '10 11:09

Sandesh


1 Answers

  • Installing + testing the MongoDB sever: http://www.mongodb.org/display/DOCS/Quickstart+Windows.
  • Installing the win32 php module: http://www.mongodb.org/display/DOCS/PHP+Language+Center#PHPLanguageCenter-Windows.
    Put the .dll into the xampp/php/ext directory (e.g. php_bz2.dll should already be in that directory).
    <?php echo 'ini: ', ini_get('cfg_file_path') tells you which php.ini you have to edit.
  • Examples and documentation: http://docs.php.net/book.mongo.
like image 178
VolkerK Avatar answered Sep 21 '22 23:09

VolkerK