Category Archives: PHP

Enable cURL PHP extension with XAMPP on Windows XP

You may need to enable the cURL extension in your XAMPP setup, just like I had to do to install Magento locally.

curl is a command line tool for transferring data with URL syntax, supporting FTP, FTPS, HTTP, HTTPS, SCP, SFTP, TFTP, TELNET, DICT, LDAP, LDAPS, FILE, IMAP, SMTP, POP3 and RTSP. curl supports SSL certificates, HTTP POST, HTTP PUT, FTP uploading, HTTP form based upload, proxies, cookies, user+password authentication (Basic, Digest, NTLM, Negotiate, kerberos…), file transfer resume, proxy tunneling and a busload of other useful tricks.

Get cURL working with XAMPP

Just 3 easy steps.

Posted in PHP | Tagged , , | View Comments

Configure XDebug with Bitnami PHP Stacks on Linux Ubuntu

Fact is that if you want to develop something more than a dynamic menu in php, you’re going to need a debugger. You’re going to need it badly and you don’t even know it (shame on you!).

So let’s start from the beginning. You got bitnami lapp (or lamp) stack because it’s cool and doesn’t need so much configuration (if any at all). So you’re basically ready to start coding.

You realize you need a debugger. You search for it and you find out about xdebug. Cool. Then you approach the Xdebug download page and you see only sources and many windows binaries. Not cool.

Posted in Linux, PHP | Tagged , , , , , , , | View Comments