lighty's life

lighty developer blog

A Interactive PHP-Shell

I was always jealous of iruby and ipython, the interactive shells for Ruby and Python. Instead of writing a script and running it through the interpreters you just execute the script line-by-line while you write it.

For debugging this is great. Compare a shell-script against the normal shell usage. It is more a ‘What if I …’ pattern instead of ‘I can write 100 lines of code without testing it’.

PHP was missing a powerful shell for a long time now. I needed one for my team at work and ‘php -a’, the interactive shell of PHP 5.0.x, is still not able to handle basic FATAL errors like ‘Function foo() not found’. So I wrote a php based interactive php-shell

One More Opcache for Php (Preview)

I’m sure you use lighttpd because of performance and scalability, and many of you run php too. I’m please to introduce you another opcode cache for php.

Yes, another.

The preview version is deprecated. please check //trac.lighttpd.net/xcache/wiki/GettingSource to get newer source.

and report problems at //trac.lighttpd.net/xcache/newticket

Flv Streaming With Lighttpd

1.4.11 got a new module for streaming Flash movie files called mod_flv_streaming. This module allows you to seek in FLV files using the high performance infrastructure of lighttpd.

Patches for 1.4.10

The wiki knows about bugs and their fixes in 1.4.10. Usually it covers small patches which fix problems discovered after the release.

But more interesting for the future is the section about patches for the current release.

  • mod_deflate for compressing dynamic content
  • mod_extforward to extract the Host from X-forwarded-for
  • the mysqlvhost patches for mod_fastcgi

They will be check in the next ‘feature’ release. If you want to try them out now and test them, feel free to contact the authors of the patches directly.

Lighttpd 1.4.10 Released

lighttpd 1.4.10 has been release and fixes the fastcgi and cgi problems of .9.

  • CGI should work again
  • fastcgi should not result in a crash under high load
  • load balancing in fastcgi should work as expected
  • broken digest request shouldn’t crash mod_auth

New is

  fastcgi.map-extensions = ( ".php3" => ".php" )
  fastcgi.server = ( ".php" => ... )

Links

In the News

I grep through the referer log from time to time to see where lighty is mentioned on the net.

This week I got attracted by these links:

That’s it for this week.

Simplify Your Configfiles With Includes

Or should it be named ‘virtual hosting made easy ?’ Anyway. If your vhosting setup looks a bit more complext like having different options (static only, php support, pre-installed rails apps, …) but a similar setup for each you can’t use the vhosting modules and have to write everything by hand. But there is rescue thanks to includes and variables.