Michael Johnson

701
reputation
41 views

Registered User

name Michael Johnson
member for 1 year
seen 2 days ago
website
location US
age 38

I've been programming professionally since 1990, first in C, then C++, and now in PHP. I've been doing proprietary web app development in PHP full time since 2003, including PEAR and Zend, heavy database (MySQL) development and, more recently, JavaScript and Dojo.

The team I'm on recently switched to .Net, so I'm learning C# and am becoming the team WCF guru.

At home, I'm still doing some PHP work. I've also started picking up Python for some desktop work.

I also have a smattering of design experience, having done most of the design work for several of our web apps. Our graphic artists make it pretty with graphics, but I do the design.

Finally, I love raytracing with POV-Ray, which you can see at my deviantArt account, listed as my website.

Dec
8
accepted What is a good PHP library to handle file uploads?
Nov
17
comment Trouble using IAuthorizationPolicy with WCF and Castle-Windsor
That seems to match what I'm seeing. I wonder though, is there another way to do something similar without having to mark up each method?
Nov
16
asked Trouble using IAuthorizationPolicy with WCF and Castle-Windsor
Nov
3
answered Nested Set model in PHP/Javascript to work with MySQL
Nov
3
accepted Module ‘eAccelerator’ already loaded php warning
Oct
31
comment Execute Code Segment only if Loop reaches its last cycle (End of Loop)
You could also drop the $aborted flag in GZipp's example and instead use if ($i <= $limit).
Oct
31
comment Execute Code Segment only if Loop reaches its last cycle (End of Loop)
@porg: while that is true for some languages (e.g. C and its descendants), it is not for PHP and some other loosely typed and especially script-like languages (e.g. Bash and other shell scripting languages, Python (I think)). As a rule of thumb, if you don't have to explicitly declare your variables, they survive the entire method.
Oct
31
comment How can I make the URL search engine friendly?
BTW, got that from httpd.apache.org/docs/2.2/… as the official reference docs. You should also check out httpd.apache.org/docs/2.2/rewrite for more rewrite-foo.
Oct
31
comment How can I make the URL search engine friendly?
!-d means "if it's not a directory" -f means "if it's a regular file" So... if the requested filename isn't a directory, but the same path with .php is appended, send the PHP file.
Oct
31
comment What are some good open source ecommerce applications with subscription support?
Probably would be better at sibling trilogy site superuser.com
Oct
31
answered Module ‘eAccelerator’ already loaded php warning
Oct
31
comment PHPUnit, Testing “Behaves Like A…”
Agreed. Also, of A and B simply implement the same interface, you could have a base test case C that test cases A and B extend.
Oct
31
comment PHP - How to check a script version
I'd go for downloading the file only on occasion (every 'x' days, as DOOManiac says). This avoids relying on JavaScript, as, despite what you might think, many clients won't have JavaScript (mobile phones, text browsers (yes, they're still used), automated tools). And only do the download in a scheduled job so it doesn't impact the user.
Oct
31
comment PHP - How to check a script version
But that's not why it's going slow.
Oct
30
revised ASP.NET MVC – Mock Membership for Controller Test
edited tags
Oct
30
answered ASP.NET MVC – Mock Membership for Controller Test
Oct
29
comment Cannot redeclare class mdb2_error in Pear MDB2 package
You'll probably need to share the full error message, at least. Also, by your "two PCs" do you mean Windows machines? That is, what is your specific local setup? Finally, I assume you mean a virtual hosting provider when you say "in virtual host". In some cases it's useful to know which one.
Oct
29
comment Test if a directory is a sub directory of another folder
You should change !$dir to $dir === false (same with !$folder) to properly check for false. Also, strcasecmp() is the wrong method to use, I believe. strpos($path, $parent_folder) > 0 is the correct comparison I think. The call in the posted code checks if $parent_folder is lexically greater than $path - so strcasecmp("z", "a") would pass. Obviously not what you're looking for. Finally, I wouldn't do a case-insensitive comparison here, unless you're running exclusively on Windows. Otherwise gooddir/path would compare equal to GOODDIR/path, which under Linux would be two different directories.
Oct
28
comment Test if a directory is a sub directory of another folder
It should still be possible to use this method. If you set the group sticky bit, the group remains the same for subdirectories. Then, if your administrators are members of that group they can create subdirectories and they are still viable.
Oct
27
answered Test if a directory is a sub directory of another folder
Oct
25
answered PHP how to treat nonexistent URLs on a single entry point site that uses mod_rewrite
Oct
25
answered mySQL - One large query vs Ajax indivdual queries
Oct
22
comment How can I inject an object into an WCF IErrorHandler implementation with Castle Windsor?
I've updated the question with the relevant part of the config file.
Oct
22
comment How can I inject an object into an WCF IErrorHandler implementation with Castle Windsor?
Yes. And as far as I can tell, it's working fine.
Oct
21
revised How can I inject an object into an WCF IErrorHandler implementation with Castle Windsor?
added 377 characters in body
Oct
21
asked How can I inject an object into an WCF IErrorHandler implementation with Castle Windsor?
Sep
19
awarded  Yearling
Aug
18
awarded  Organizer
Aug
18
revised How to set up SSL in a load balanced environment?
edited tags