Jaxer
Integrating Jaxer with WampServer
by Steven Brown on Dec.27, 2008, under Jaxer
WampServer makes it easy to get started with a standard PHP setup, fortunately adding Jaxer to your existing WampServer setup is not too difficult.
Jaxer Bug: Jaxer.File.readline Not Detecting Line Endings Correctly
by Steven Brown on Dec.26, 2008, under Jaxer
Jaxer.File.readline does not correctly detect Windows line endings (\r\n). Instead it will detect this as two lines, one ending in \r and one ending in \n.
Jaxer Bug: Query String Parsing on Rewrite Pages
by Steven Brown on Dec.26, 2008, under Jaxer
Jaxer doesn’t correctly populate Jaxer.request.data when the query string is modified by an Apache rewrite.
Jaxer Mail Parser Class
by Steven Brown on Nov.22, 2008, under Jaxer
Here’s some more code that parses an incoming email. It’s only very basic and I am sure makes lots of mistakes, but it works enough to break up multipart emails, decode special characters in text parts and decode attachments in other parts.
Note that this requires the Base64 decoder class from http://www.webtoolkit.info/javascript-base64.html as I couldn’t be bothered making my own.
Jaxer POP3 Class
by Steven Brown on Nov.20, 2008, under Jaxer
Hi guys I thought I’d release this code to the public, it’s a POP3 class written in Jaxer. It’s only very basic for now (is missing commands like TOP, APOP and NOOP) and doesn’t do any error checking (it assumes your commands are successful).
It also isn’t in the regular Jaxer coding format, though I plan to convert it soon.