Posts

Showing posts with the label install

Install PHP on window with IIS

Image
PHP  (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML. We can install php via microsoft installer or by manually. Installing PHP on your development PC allows you to safely create and test a web application without affecting the data or systems on your live website. This article describes PHP installation as a module within the Windows using IIS Step 1: Getting PHP You can download window code from  php website . After downloading extract the folder and rename it to php. Now copy and paste it to you C drive . Step 2: Configure php.ini  Open the c:\php folder and search for php.ini-production file in the directory. Rename it to php.ini . This is the main initialization file. Edit this file and search for “ extension_dir ”. Remove the semi-colon and change the path to “ c:\php\ext ” ...

Installing Angular 4

Image
Angular 4 is here and it's time to get started. If you're new to Angular, you might have arrived on this page  with confusion as to how you start an actual Angular 4 project.  If that's the case, you've come to the right place! There are a few different ways to get started with an Angular 4 project. This is a step-by-step setup guide to setup Angular v.4 . First thing first we have to make sure we have below thing on our system. Node JS with NPM(Node Package Manager) Angular CLI (Command line Interface) For downloading Node JS Click Here , choose either the Windows or Mac installer based on your OS. After it's installed,   visit your console / command line and type:    node  -v                                                                         ...