Posts

What is the difference between wamp lamp mamp xampp server?

Difference wamp lamp mamp xampp Server All thing is same in all Server which i have mentioned below This is a open source platform and you can free download and use it. Apache is the web server. Mysql is the relational database management system. PHP is the object-oriented scripting language. Wamp: Full form of WAMP is Windows, Apache, MySQL and PHP. WAMP Server is work on Windows Operating System only. Lamp : Full form of LAMP is Linux, Apache, MySQL and PHP. LAMP Server is work on Linux Operating System only LAMP is a combine package of Linux, Apache, MySQL and PHP. Mamp : Full form of MAMP is MAC, Apache, MySQL and PHP. MAMP Server is work on MAC Operating System only.   Xamp p: xampp stands for x-os, apache, mysql, php , perl. X-OS means it can be used for any operating system. XAMPP for major operating system including windows, mac, Linux. XAMPP Server come along with some additional features including support of perl, filezilla, m

What is the problem with Meteor SEO?

Meteor SEO problem Here i will tell you the problem with SEO and Meteor Meteor does not have Problem with SEO  it has problem with SEO Page Okay let me explain:- If you run the page on browser of Meteor site and will check the source code by Ctrl+U then you will find that there is only some css and js file and Some JaveScript Code HTML does not render on HTML file This is the main problem with Meteor Pages When Good crawl the page and it does not found the html on pages then it google thinks that it is a blank page and does not crawl the content. So in SEO purpose Google does not crawl the content In Technical Way: if google visits your Meteor Site it Crawl the html document on your server show it and tries to understand what your document is about in page. If a user search on google for some keyword, google may think “that a page i had crawled that day, I think this can be answer the users request the best.” The thing with Meteor is, that it is a client-heavy web ap

How to update a collection via mongoimport in MongoDB?

You can update a collection via mongoimport in MongoDB --upsert provide you the facility to update the data on basis of _id in MognoDB collection Take a look on this post here you can learn how to import and export the data from MongoDB http://web-developers-solution.blogspot.in/2015/01/how-to-import-and-export-data-from-MongoDB-in-json-format.html After take the backup from MongoDB you can change the data from document but keep in mind do not change the _id Now like you have imported a collection from mongoDB named user.json Open the file and make your changes and the save the file Now you can import the file it will update your document on the basis of _id in documents mongoimport --collection profiles --db backup --upsert --file user.json

How to import and export the data from MongoDB in json format?

You can use these query to import and export the data from MongoDB in JSON format. First of all you need to install MongoDB in your system. Then open cmd with administrator Now go to mongodb bin directory like C:\wamp\bin\mongodb\mongodb-win32-x86_64-2008plus-2.4.12\bin Then run this command Query to Export mongoexport --db databasename --collection collectionname --out filename.json Now you need to import the data from your file which you have backup recently Query to Import mongoimport --collection collectionname --db databasename --file filename.json By use these query you can import and export the data from mongoDB in json format Now if you have to use these query then use same process to import and export Then open cmd with administrator  and then run these command with your mongoDB details Query to import mongoimport --host hostname --port 27017 --username yourusername --password yourpassword --collection collname --db dbname --file filename.json Upda