Pular para o conteúdo principal

installing and configuring php7 apache2 on windows

Access the php's site: http://windows.php.net/download/

Download the Zip Thread Safe version:

Unpack in a folder (eg. c:\php)


Download the apache2 from: https://www.apachelounge.com/download/

Unpack in a folder (eg. c:\apache2)

Download the postgresql from:
Choose your version of Operational System

Unpack in a folder (eg. c:\postgresql)





Comentários

Postagens mais visitadas deste blog

configuring xdebug in notepad++ to debug php

Debugging Php7 Code Hello, today we'll install a plugin to Notepad++, to debug Php version 7. Be careful! There are differences between the versions, we are configuring debug for Php7. Debug is a type of server/client communication. To debug Php code, it's necessary to activate an extension on the Php server. And a client plugin in an editor like Notepad++, in our case DGBp will listen the server. Let's start by installing xdebug. Download the latest xdebug.dll from: https://xdebug.org/download.php If you're running Apache (or IIS) as FastCGI (or CGI) then you need the Non Thread Safe version. If you're running Apache as default (as a Module), then you'll need the more traditional Thread Safe version. Please note: This all only applies to Windows users. Here I downloaded a "thread safe" version and put it inside the ext folder. Add following at the session [xdebug] of your php.ini file: [xdebug] zend_extension=...

images