You found me…
Posts tagged php
Easy to setup for web development on Windows
Oct 4th
Scott Hanselman presents the following article on getting a machine up to speed for Web Development.
There’s a new site at http://www.microsoft.com/web and a new (beta) of the Microsoft Web Platform Installer (blog announcement). It’s basically a super bootstrapper that keeps track of where to get stuff and organizes them as profiles.
If I select “Your Choice” I get a complete list from a catalog of things that can be downloaded. I can auto-select options from a dropdown like “PHP Developer” or “Classic ASP Developer.” Cool that those options are there as well as ASP.NET Developer. There’s a manifest that it downloads to get the latest versions of each of these.
On the Web Server tab, it’ll pick the right IIS modules you’d need to get a site up, but it also shows as options some of the more interesting (and not well publicized) modules like ARR and BitRate Throttling that have been released since IIS7 came out.
If you’re running a Web Development shop, it’s certainly a quick way to get everything you’d need installed, including the free version of Visual Studio Web Express.
Check it out, and if you have any trouble or find anything interesting, you can report it directly to the team at the Web Platform Installer Forum. If you like it or hate it, let them now. It’d be interesting to see how extensible it can be and if they choose to extend it other developer products.
WordPress and memory limits
Sep 16th
If you run WordPress and ever receive a message such as “Allowed memory size of xxxxxx bytes exhausted” then you’re not alone. Resolving the error isn’t a big deal though. As of v2.5 the WP_MEMORY_LIMIT option allows you to specify the maximum amount of memory that can be consumed by PHP.
This wasn’t in my config already, but simply adding it fixed the issue.
This setting increases PHP Memory only for WordPress, not other applications.
Please note, this setting may not work if your host does not allow for increasing the PHP memory limit–in that event, contact your host to increase the PHP memory limit. Also, note that many hosts set the PHP limit at 8MB.
Increase PHP Memory to 64MB
define(‘WP_MEMORY_LIMIT’, ’64M’);
Increase PHP Memory to 96MB
define(‘WP_MEMORY_LIMIT’, ’96M’);
Top Websites to follow if you’re into Web Development
May 26th
1. NETTUTS
NETTUTS is a recently launched blog/tutorial site that provides “spoonfed web skills“. There are already plenty of useful and detailed tutorials that range from offloading static content to Amazon S3 to creating a beautiful tabbed content area using jQuery. NETTUTS is perfect for developers just starting out, since the tutorials are very thorough and in a “step by step” format. For more advanced developers, it’s an excellent source of inspiration and learning new techniques.
2. Vitamin
Vitamin offers a large amount of information on the topic of web development and design. With many contributors, Vitamin manages to cover a wide range of topics including Ajax, CSS, development techniques, best practices, and workflow management.
![Reblog this post [with Zemanta]](http://www.paulspoerry.com/wp-content/uploads/2010/08/reblog_e.png)

