Skip to main content

Posts

Showing posts with the label Windows

How to install LARAVEL5 with Xampp (Windows)

Hi,  Today I am with the installation guide of LARAVEL5 in windows. Step 1)  Requirements a) PHP >= 5.5.9 b) OpenSSL PHP Extension c) PDO PHP Extension d) Mbstring PHP Extension e) Tokenizer PHP Extension Step 2)  Install Xampp First of all, we need Xampp, so we can download it from the official page: Download Xampp Step 3)  INSTALL Composer If you've downloaded and installed Xampp, you need to install Composer.                 "Composer is a PHP package manager that is integrated with Laravel Framework.                  In Windows, we can install it easy going to the official page and download the installer." Composer Download page After installing it, open a Windows terminal and write composer. Step 4) Xampp Virtual Host    We will configure a Virtual Host in Xampp for a Laravel project, and in this example, we wa...

MongoDB for Windows

Download MongoDB from  https://www.mongodb.com/download-center#community MongoDB connection with PHP(XMPP) for windows 1) Install MongoDB. 2) open cmd with the administrator and where MongoDB is installed. when it is installed in C drive --- 3)type in cmd---C:\Program Files\MongoDB\Server\3.2\bin. 3)Make folder test in d Drive client location C:\Program Files\MongoDB\Server\3.2\bin\mongod --dbpath "d:\test\mongodb data 4) run client open another cmd with the administrator and run the mongo.exe 5) after that download the latest package from- https://s3.amazonaws.com/drivers.mongodb.org/php/index.html 6) then open c--> xampp-->php-->ext-->paste all extracted files. and change one file to 'php_mongo.dll' 7) open php_ini and write---- extension=php_mongo.dll 8) set the environment variable in control panel-->system setting->advnaced->set environment variable--paste the path of PHP and then restart the server and check in php ini file m...