News Feed
Sections

News Archive


Community Events






Don't see your event here?
Let us know!


feed this:

PHPedia Blog:
Top 5 PHP replacements for Apache default directory listing
0 comments :: posted Thursday July 24, 2008 @ 10:21:25
voice your opinion now!

The PHPedia blog has posted their top five list if scripts to replace the default listing Apache does for a directory without an index file.

Here's their list:

Check out the PHPedia post for example screenshots of each.

tagged with: directory listing apache topfive default software


Hiveminds Magazine:
How to bridge PHP and Java on Windows with Apache Tomcat
0 comments :: posted Wednesday July 02, 2008 @ 12:06:44
voice your opinion now!

Hiveminds Magazine has a recent post about bridging the gap between PHP and Java with the help of the Tomcat add-on for Apache.

Want to run PHP and access Java? Here's how to do it on Windows XP using Apace and Apache Tomcat. Apache Tomcat is a Servlet container developed at the Apache Software Foundation (ASF). Tomcat implements the Java Servlet and the JavaServer Pages (JSP) specifications from Sun Microsystems, and provides a "pure Java" HTTP web server environment for Java code to run.

They go with the XAMPP distribution for the web server setup (for simplicity rather than on a unix-based system) and include the configuration and installation procedures to get everything up and running (screenshots included).

tagged with: java tomcat windows apache xampp install configure screenshot

Michael Kimsal's Blog:
Lessons learned from a reddit overload
0 comments :: posted Monday June 30, 2008 @ 12:04:27
voice your opinion now!

Thanks to it being posted on reddit, the traffic to a certain post on Michael Kimsal's blog gave him a crash (literally?) course in high load management on a WordPress blog.

The blog post was voted up on reddit, and the server got slammed. So slammed, in fact, that it was unusable for a few hours while I investigated the problem. I didn't know the post was on reddit, but I knew I was getting some traffic.

He spent some time trying to get the Apache server to finally die off and give him back his machine, at least enough to get a feel for what was going on. Part of his problem was not having APC installed like he thought and the other part - WordPress. While friendly on the outside, it's apparently somewhat lacking on the inside.

tagged with: reddit overload apc apache wordpress upload meter

PHP-Security.net:
X.509 PKI login with PHP and Apache
0 comments :: posted Friday May 30, 2008 @ 17:05:59
voice your opinion now!

Christopher Kunz has relaunched his php-security.net domain with a brand new blog and a new article posted today - "X.509 PKI login with PHP and Apache".

Since grid computing (that's what I'm currently doing) also is very much about Single-sign on and delegation of rights, username/password authentication schemes don't quite do it for us. Thus, a PKI (public key infrastructure) based on X.509 is employed.

He explains the acronym soup by defining the process as advanced means of "showing the web who you are". He explains some of the basics about the certificates and who good candidates for this type of authentication are. Then the tech starts - how to get Apache configured to use them and how to use them in PHP to authenticate the external user (requiring OpenSSL compiled in to access the needed functions).

tagged with: x509 pki login apache certificate tutorial openssl

ApacheLounge.com:
Memory usage Apache + PHP as module versus FastCGI
0 comments :: posted Monday May 26, 2008 @ 08:42:48
voice your opinion now!

In this quick post to the ApacheLounge forum, Steffen shares some stats running PHP in two different methods of running PHP on Apache - mod_php and fastcgi.

With PHP as module after some time the memory usage of Apache is growing and growing up to ~800M.
With mod_fcgid is stays on a steady ~100M
PHP configuration: only with the extension php_mysql.dll and eaccelerator.dll

A graph of the statistics is also provided.

tagged with: apache memory usage fastcgi compare graph

DevShed:
Creating a VAMP (Vista, Apache, MySQL, PHP) Setup
0 comments :: posted Tuesday May 20, 2008 @ 13:47:31
voice your opinion now!

DevShed has a new tutorial on creating your very own VAMP setup - Vista, Apache, MySQL and PHP - running on your local machine.

With the abundance of communication between the browser and a server in these days of AJAX and JSON data interchange, there has never been a better time to get your own development web server set up so that you can test all those dynamic scripts you're writing. This article will show you how to do it using some of the most popular software.

They start by setting up an Apache web server and follow it with PHP first then MySQL second to round out the install. Most of the installers are pretty simple for the Windows-based systems (the developers of them have done a great job) so the install should go pretty smoothly.

tagged with: vamp vista windows mysql apache setup configure install

Andreas Gohr's Blog:
Compiling a Portable Apache for Linux
0 comments :: posted Tuesday April 01, 2008 @ 11:32:57
voice your opinion now!

Andreas Gohr has posted a guide for creating a mobile Apache installation that could run on something like a USB stick.

Today I spent some time to figure out how to compile a relocatable Apache with PHP support. Yes, this might result in a Linux version of the DokuWiki on a Stick project. Read on for detailed instructions.

The installation is pretty similar to the normal compile with a few small differences. Check out the post for the complete process, commands and all.

tagged with: portable apache usb stick linux dokuwiki

Matthew Turland's Blog:
Watch Your Include Path
0 comments :: posted Thursday March 27, 2008 @ 10:24:38
voice your opinion now!

Matthew Turland is looking to "save you some grief" by pointing out an issue he recently had trouble with and eventually found out was a bug in PHP.

It's pretty rare that I encounter a bug in the software I run that hampers my ability to work or my server environment's ability to function normally. However, I encountered one last week that has taken me and several Rackspace support technicians nearly a week to figure out, namely PHP bug #43677.

The issue was that PHP seemed to be "forgetting" the include_path in the current script (not Apache). The bug has been found in PHP 5.2.5 (and possible in all of the 5.2.x releases as well). The problem has been fixed in the latest CVS version and a patch has been created for those that want to correct the problem right away.

tagged with: include path apache bug setincludepath patch fix

Vinu Thomas' Blog:
PHP Apps on Mobile using PAMP
0 comments :: posted Friday March 14, 2008 @ 10:25:57
voice your opinion now!

Vinu Thomas talks about a platform on his blog today that can be used to create PHP applications to live on a S60 phone.

If you'd like to work on your favorite PHP apps on your S60 phones, here's PAMP - Personal Apache, MySQL and PHP. This is implemented on the Symbian OS using Open C, which is a set of industry-standard POSIX and middleware C libraries for S60.

The PAMP system is pretty easy to install and guides can be found over on the dev.mobi website to help get you started. You can download the latest version of the project from its SourceForge website.

tagged with: pamp application mobile phone s60 install mysql apache

Brian Moon's Blog:
Apache Worker and PHP
0 comments :: posted Friday February 15, 2008 @ 08:43:00
voice your opinion now!

In a recent post to his blog, Brian Moon talks about the experience he's had with using PHP on Apache 2 with a threaded MPM at Dealnews.com.

Well, first, what is an MPM? It stands for Multi-Processing Module. [...] The most commonly used threaded MPM is the Worker MPM. In this MPM, you have several processes that run multiple threads within it. This is the one I will be talking about.

He goes on to describe the "huge memory savings" that using the module got them - using the worker process to increase the child capacity of the Apache instance. He recommends keeping it simple when compiling a server to work with the worker functionality and mentions how it can also help with serving static pages right along side the dynamic ones (without a second server!).

Check out the post for a few more tips.

tagged with: apache worker mpm process static dynamic memory


security developer package job application PHP5 database example cakephp zendframework releases book ajax release conference code mysql zend PEAR framework

All content copyright, 2008 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework