<?xml version="1.0"?>
<rss version="2.0">
  <channel>
    <title>PHPDeveloper.org</title>
    <link>http://www.phpdeveloper.org</link>
    <description>Up-to-the Minute PHP News, views and community</description>
    <language>en-us</language>
    <pubDate>Tue, 21 May 2013 23:23:24 -0500</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[Stuart Herbert's Blog: Where Do You Get Your PHP From For Windows?]]></title>
      <guid>http://www.phpdeveloper.org/news/16927</guid>
      <link>http://www.phpdeveloper.org/news/16927</link>
      <description><![CDATA[<p>
In a recent post to his blog <i>Stuart Herbert</i> asks his readers <a href="http://blog.stuartherbert.com/php/2011/09/27/where-do-you-get-your-php-from-for-windows/">where they get their Windows PHP binaries from</a> - there's more than just <a href="http://windows.php.net">windows.php.net</a> out there after all.
</p>
<blockquote>
I'm currently working out installation instructions for phix on Microsoft Windows before my sessions at PHPNW 11 and ZendCon in October...and I need your help, because it has been many years now since I used Windows. If you do your PHP development using Windows on the desktop or laptop, where do you prefer to get your copy of PHP from?
</blockquote>
<p>
He offers a few options: the obvious <a href="http://windows.php.net/">windows.php.net</a>, the <a href="http://www.microsoft.com/web/platform/phponwindows.aspx">Microsoft Web Platform</a> or a package like <a href="http://www.apachefriends.org/en/index.html">XAMPP</a>/<a href="http://www.wampserver.com/en/">WAMP</a>. In the <a href="http://blog.stuartherbert.com/php/2011/09/27/where-do-you-get-your-php-from-for-windows/#comments">comments</a> of the post favorites include the Web Platform Installer and windows.php.net with the package versions (XAMPP/WAMP) coming in behind.
</p>]]></description>
      <pubDate>Thu, 29 Sep 2011 10:58:24 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Anna Filina's Blog: PHP 5.3 on OSX (XAMPP over MAMP)]]></title>
      <guid>http://www.phpdeveloper.org/news/14077</guid>
      <link>http://www.phpdeveloper.org/news/14077</link>
      <description><![CDATA[<p>
<i>Anna Filina</i> has posted a new item to her blog about some of her <a href="http://annafilina.com/blog/php-5-3-on-osx/">experiences with PHP 5.3 on the OS X platform</a> including some of the different software she tried (like the <a href="http://symfony-project.org">Symfony framework</a>).
</p>
<blockquote>
I wanted to play with Symfony 2 and so needed to install PHP 5.3 on my OSX 10.5. What seemed like a simple task turned into a huge waste of my time. I use MAMP because it's a nice out-of-the-box solution. The problem is, it still doesn't ship with 5.3 because it's waiting for it to be "stable".
</blockquote>
<p>
She tried to find a way to upgrade MAMP's installation to the latest stable version of PHP but was stopped by dependency errors and opted to go with <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a> instead to get more of what she needed. She also has included a few edits to the post with more information - how to migrate your virtual hosts from MAMP to XAMPP and migrating over the MySQL structure. 
</p>]]></description>
      <pubDate>Tue, 23 Feb 2010 12:26:23 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Idrish Laxmidhar's Blog: How to send mail from Localhost with XAMPP and mercury/32]]></title>
      <guid>http://www.phpdeveloper.org/news/13944</guid>
      <link>http://www.phpdeveloper.org/news/13944</link>
      <description><![CDATA[<p>
In a recent post to his blog <i>Idrish Laxmidhar</i> walks you through the process of getting <a href="http://i-tech-life.blogspot.com/2010/01/how-to-send-mail-from-localhost-with.html">Mercury set up for local mailing</a> and used by an XAMPP installation for debugging.
</p>
<blockquote>
Had tried to make php mail() work on localhost. But had failed. So gave up. This was around 8 months back. Now again some days back had to use the Php mail function on one project. [...] A lot of google searching and some simple steps, I could make it work. So here sharing my experience with you.
</blockquote>
<p>
He starts with a list of requirements to follow along with his process - a web server, a mail server (in this case Mercury) and a mail client - and then starts into the steps. Each one is accompanied by screenshots showing you exactly what each of the screens should look like as you follow along. In the end you'll have a local mail server you can connect to and test with without ever having to send out a public email.
</p>]]></description>
      <pubDate>Mon, 01 Feb 2010 11:19:39 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Cal Evans' Blog: XAMPP, PHP 5.3, PEAR, and PHAR (what a mess)]]></title>
      <guid>http://www.phpdeveloper.org/news/12860</guid>
      <link>http://www.phpdeveloper.org/news/12860</link>
      <description><![CDATA[<p>
<i>Cal Evans</i> <a href="http://blog.calevans.com/2009/07/11/xampp-php-5-3-pear-and-phar-what-a-mess/">had an issue</a> - it involved XAMPP, PHP 5.3, PEAR and phar:
</p>
<blockquote>
If you are installing PHP 5.3 and when you run go-pear.bat you get this: phar "C:xamppphpPEARgo-pear.phar" does not have a signature.
</blockquote>
<p>
The short method to getting it working correctly is to update your php.ini file with a few small changes to the require_hash setting. <i>Cal</i> goes through the long method he took to finally get to that point - decision on the platform (XAMPP), version of PHP to use and some googling around that lead him to <a href="http://lenss.nl/2008/07/pear-install-weirdness/">this</a> and <a href="http://php.net/manual/en/phar.configuration.php#ini.phar.require-hash">this</a> to help resolve his problem.
</p>
<blockquote>
It turns out that, if that's on, for security purposes it can't be overridden. Since the default is on, I had to open up my php.ini, find it and set it to off. Once it's off, everything works just fine.
</blockquote>]]></description>
      <pubDate>Mon, 13 Jul 2009 10:53:18 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[NETTUTS.com: Getting Started with Magento Ecommerce!]]></title>
      <guid>http://www.phpdeveloper.org/news/12298</guid>
      <link>http://www.phpdeveloper.org/news/12298</link>
      <description><![CDATA[<p>
The Magento eCommerce platform is quickly becoming one of the favorites, but it's also known for being  bit tricky. <a href="http://net.tutsplus.com/tutorials/other/getting-started-with-magento-ecommerce/">This new tutorial</a> from NETTUTS.com shows you how to take some of the first steps - installation, working with the admin interface and themeing.
</p>
<blockquote>
<a href="http://www.magentocommerce.com">Magento</a> is the next generation of eCommerce! It is incredibly well architectured, fully flexible, scalable, and fun to work with. If you've ever thought about creating an online shop, Magento is your choice! Today we are going to install it locally with XAMPP Lite and review the essentials.
</blockquote>
<p>
The tutorial also helps you to install the <a href="http://www.apachefriends.org/en/xampp-windows.html#646">XAMPP package</a> - a Windows all-inclusive web platform that includes Apache, MySQL, PHP and phpMyAdmin. Once its started, you can create the database Magento needs and import its data. Log into the admin, change a few settings and you're all set.
</p>]]></description>
      <pubDate>Wed, 08 Apr 2009 09:38:28 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Vid Luther's Blog: Using your Mac as a local web development environment.]]></title>
      <guid>http://www.phpdeveloper.org/news/11909</guid>
      <link>http://www.phpdeveloper.org/news/11909</link>
      <description><![CDATA[<p>
Having a development environment on a remote machine (maybe production, maybe test) is nice, but sometimes you just need the speed and simplicity that something a bit more local can give you. <i>Vid Luther</i> <a href="http://www.phpcult.com/blog/using-your-mac-as-a-local-web-development-environment/">talks about setting up</a> just such a local development environment on your Mac. (Sorry Windows guys - maybe check out <a href="http://www.wampserver.com/en/">WAMP</a>)
</p>
<blockquote>
This post is for the techies who know me, and are switching. Some are coming from Windows, some from Linux, some are designers who need to do some local development. So, I'll try to keep this post as simple as possible, and perhaps more like a tutorial, where you can "copy and paste" commands and files.
</blockquote>
<p>
He recommends a few pieces of software that you'll need - things like <a href="http://www.apachefriends.org/en/xampp-macosx.html">XAMPP</a> and <a href="http://dev.mysql.com/">MySQL</a> - and some other "nice to haves" like <a href="http://macromates.com/">TextMate</a>, <a href="http://www.open.collab.net/downloads/community/">Subversion</a> and <a href="http://www.expandrive.com/expandrive">Expandrive</a>. He shows how to set up the shell environment, create virtual hosts and add them into the /etc/hosts file so they'll resolve locally.
</p>]]></description>
      <pubDate>Mon, 09 Feb 2009 09:32:14 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Mohammed Berdai's Blog: How To Install PostgreSQL And phpPgAdmin Support In XAMPP]]></title>
      <guid>http://www.phpdeveloper.org/news/11142</guid>
      <link>http://www.phpdeveloper.org/news/11142</link>
      <description><![CDATA[<p>
<i>Mohammed Berdai</i> has a <a href="http://practicalfoss.blogspot.com/2008/09/how-to-install-postgresql-and.html">quick tutorial</a> posted about getting a full installation of PostgreSQL and phpPgAdmin up and working in an XAMPP environment.
</p>
<blockquote>
<a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a> is an easy to install Apache distribution containing MySQL, PHP and Perl, plus many additional modules. The whole package is well integrated and can save a lot of time and hassle for the inexperienced web developer. [...] <a href="http://phppgadmin.sourceforge.net/">phpPgAdmin</a> is a web-based administration tool for PostgreSQL, exactly as phpMyAdmin for MySQL.
</blockquote>
<p>
It's a simple three step process (with a few sub-steps inside each) to get the system up and running - basically: install XAMPP, install PostgreSQL and install phpPgAdmin.
</p>]]></description>
      <pubDate>Fri, 03 Oct 2008 10:29:32 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Gyorgy Fekete's Blog:  Web Development in Mac OS X - Complete Guide]]></title>
      <guid>http://www.phpdeveloper.org/news/10589</guid>
      <link>http://www.phpdeveloper.org/news/10589</link>
      <description><![CDATA[<p>
<i>Gyorgy Fekete</i> has provided what he calls a <a href="http://blog.primalskill.com/?p=64">complete guide</a> to PHP development on Mac OS X in a recent blog entry.
</p>
<blockquote>
Finally, I switched entirely to Mac. It is a little frustrating that there is not a complete resource on how to set up a web development enviroment on Mac OS X. The majority of tutorials are outdated. I will try to write this guide as complete as possible. 
</blockquote>
<p>
<a href="http://blog.primalskill.com/?p=64">The guide</a> provides basic installation instructions for PHP, MySQL (XAMPP or MAMP), the configuration of these two packages, throwing XDebug in to help with your debugging, installing Subversion and picking out your IDE of choice. He also suggests a somewhat optional step - setting up a Windows virtual machine to be able to test things out cross-platform without the need for a separate machine.
</p>]]></description>
      <pubDate>Fri, 11 Jul 2008 10:22:56 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Hiveminds Magazine: How to bridge PHP and Java on Windows with Apache Tomcat]]></title>
      <guid>http://www.phpdeveloper.org/news/10531</guid>
      <link>http://www.phpdeveloper.org/news/10531</link>
      <description><![CDATA[<p>Content no longer valid</p>]]></description>
      <pubDate>Wed, 02 Jul 2008 12:06:44 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Community News: XAMPP Updates Packages]]></title>
      <guid>http://www.phpdeveloper.org/news/8807</guid>
      <link>http://www.phpdeveloper.org/news/8807</link>
      <description><![CDATA[<p>
As <a href="http://hades.phparch.com/hermes/public/viewnews/index.php?id=3519">mentioned by</a> <i>Elizabeth Naramore</i> on the php|architect website today, the XAMPP project has released a new version of their software to automagically install Apache, MySQL, PHP and Perl.
</p>
<p>
From <a href="http://www.apachefriends.org">ApacheFriends.org</a>:
</p>
<blockquote>
In all versions we updated Apache to 2.2.6, PHP to 5.2.4 and phpMyAdmin to 2.11.1. (Find more details on the specific download page.) I'm sorry to say, but under Windows we currently have problems with the new Apache and mod_perl, which doesn't work at all. We hope to find a solution soon.
</blockquote>
<p>
Links to download the version for your OS of choice (Windows, OS X, Linux, Solaris) can be found <a href="http://www.apachefriends.org/en/xampp.html">on this page</a> of the project's website.
</p>]]></description>
      <pubDate>Tue, 09 Oct 2007 10:43:28 -0500</pubDate>
    </item>
  </channel>
</rss>
