mongodb查看工具rockmongo安装使用说明
rockmongo的官方网站见如下, www.2cto.com http://rockmongo.com/ 这个工具和另一个比较好用的MongoVUE工具相比较而言的优势就是无功能限制,MongoVUE在试用期之后又诸多限制。 而且前者是PHP服务器端运行,而后者是安装版本。当然了 各重要的是该工具的开
rockmongo的官方网站见如下, www.2cto.com
http://rockmongo.com/
这个工具和另一个比较好用的MongoVUE工具相比较而言的优势就是无功能限制,MongoVUE在试用期之后又诸多限制。
而且前者是PHP服务器端运行,而后者是安装版本。当然了 各重要的是该工具的开发者是中国人,国货当自强,当然了顶起。
www.2cto.com
直接切入主题:在下载页面有2个版本,见下图
以下的路径作为参考,可自行更改
一、安装PHP的运行环境
1、安装apache到d:\myamp\Apache2.2
按照服务方式安装
2、PHP5.2.17解压至D:\myamp\PHP5.2.17
3、修改D:\myamp\Apache2.2\httpd.conf
--下面第二行是增加的
#LoadModule ssl_module modules/mod_ssl.so
LoadModule php5_module d:/myamp/PHP5.2.9/php5apache2_2.dll
DirectoryIndex index.php default.php index.html
--下面第三行是增加的
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
AddType application/x-httpd-php .php
4、D:\myamp\PHP5.2.17\php.ini-dist.ini复制为D:\myamp\Apache2.2\bin\php.ini,并修改
;extension_dir = "./"
extension_dir = "D:\myamp\PHP5.2.17\ext\"
5、重新启动apache,在d:\myamp\Apache2.2\htdocs\下面新增phpinfo.php,内容
可以检测是否安装成功,环境安装成功如下
二、下载MongoDB PHP 驱动 (http://us.php.net/manual/en/mongo.installation.php),直接将下载的php_mongo.dll放入PHP的ext目录中,并且在
D:\myamp\Apache2.2\bin\php.ini 添加
;extension=php_zip.dll 这行的后面
extension=php_mongo.dll
三、将http://rockmongo.com/downloads中的PHP代码放入d:\myamp\Apache2.2\htdocs\ 下面
四、访问http://localhost/rockmongo/ 就可以正常访问了。
初始用户名密码admin admin

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



When managing WordPress websites, you often encounter complex operations such as installation, update, and multi-site conversion. These operations are not only time-consuming, but also prone to errors, causing the website to be paralyzed. Combining the WP-CLI core command with Composer can greatly simplify these tasks, improve efficiency and reliability. This article will introduce how to use Composer to solve these problems and improve the convenience of WordPress management.

In Laravel development, dealing with complex model relationships has always been a challenge, especially when it comes to multi-level BelongsToThrough relationships. Recently, I encountered this problem in a project dealing with a multi-level model relationship, where traditional HasManyThrough relationships fail to meet the needs, resulting in data queries becoming complex and inefficient. After some exploration, I found the library staudenmeir/belongs-to-through, which easily installed and solved my troubles through Composer.

During the development process, we often need to perform syntax checks on PHP code to ensure the correctness and maintainability of the code. However, when the project is large, the single-threaded syntax checking process can become very slow. Recently, I encountered this problem in my project. After trying multiple methods, I finally found the library overtrue/phplint, which greatly improves the speed of code inspection through parallel processing.

When developing a project that requires parsing SQL statements, I encountered a tricky problem: how to efficiently parse MySQL's SQL statements and extract the key information. After trying many methods, I found that the greenlion/php-sql-parser library can perfectly solve my needs.

In the process of developing a website, improving page loading has always been one of my top priorities. Once, I tried using the Miniify library to compress and merge CSS and JavaScript files in order to improve the performance of the website. However, I encountered many problems and challenges during use, which eventually made me realize that Miniify may no longer be the best choice. Below I will share my experience and how to install and use Minify through Composer.

I'm having a tricky problem when developing a front-end project: I need to manually add a browser prefix to the CSS properties to ensure compatibility. This is not only time consuming, but also error-prone. After some exploration, I discovered the padaliyajay/php-autoprefixer library, which easily solved my troubles with Composer.

When using TYPO3CMS for website development, you often encounter problems with installation and configuration extensions. Especially for beginners, how to properly install and configure TYPO3 and its extensions can be a headache. I had similar difficulties in my actual project and ended up solving these problems by using Composer and TYPO3CMSComposerInstallers.

When developing websites using CraftCMS, you often encounter resource file caching problems, especially when you frequently update CSS and JavaScript files, old versions of files may still be cached by the browser, causing users to not see the latest changes in time. This problem not only affects the user experience, but also increases the difficulty of development and debugging. Recently, I encountered similar troubles in my project, and after some exploration, I found the plugin wiejeben/craft-laravel-mix, which perfectly solved my caching problem.
