Optimisation process415 (6/25/2009 9:19:09 PM) comp.lang.php OK, following on from a thread above. Where do most people start their optimisation and how? a: Query analysis - both the queries themselves and then using joins, etc? b: RDBMS tuning? c: Webserver tuning? ... Hugh
Integrating email into PHP app523 (6/10/2009 8:03:26 AM) comp.lang.php Hello hello. I have a dilemma on my hands. I have an application, in production, which uses PHP's IMAP libraries to read inbound emails in a mailbox. Email is tightly integrated into the app itself. The pro... Hugh
Is this the right way to do it?420 (4/22/2009 8:32:52 PM) comp.lang.php I appreciate this is not a PHP specific question, but I am using PHP to do it, and you're a knowledgeable bunch, so here goes. I am writing a custom email client to integrate into my application. I use the v... Hugh
OT SSL Certificate331 (1/26/2009 8:38:43 AM) comp.lang.php Hi folks, I know this is not a PHP issue but the apache config group is dead quiet, so I hope someone can help. I'm having a problem with an Apache2 server on RHEL5. I had SSL up and running. The certificat... Hugh
PHP SMS & Telephony325 (12/19/2008 6:44:32 PM) comp.lang.php Has anyone ever integrated a server-side PHP system with telephony and/or SMS? ... Hugh
Assertions in real life319 (11/18/2008 10:51:01 PM) comp.lang.php I am told that I should use assertions in my testing. The problem is, because I test using a cut of live data, the data always changes. Has anyone come up against this or have they abandoned assertions genera... Hugh
Smart sorting154 (10/28/2008 11:10:14 PM) comp.databases.mysql I have a database that contains a products table and an orders table. Orders reference products in the products table. Currently I retrieve the products and order alphabetically, for use in dropdown menus. ... Hugh
Password previously used ideas?917 (10/28/2008 8:23:35 PM) comp.lang.php Hi Folks, This is more for an intellectual exercise. It's not a difficult problem but it might be interesting to find out different solutions. So you have users, and they have passwords, stored in SHA1. You ... Hugh
"///" comment type212 (10/11/2008 3:17:20 PM) comp.lang.php I've seen this in code and my IDE highlights it differently. Is it notable in any way? ... Hugh
Manually setting session ids427 (9/29/2008 5:33:09 PM) comp.lang.php I am writing some server to server software that needs to maintain state. When I say server to server I mean that the client is not a browser, it is another PHP server (as if that wasn't obvious). The obviou... Hugh
Object field names719 (4/2/2009 8:31:22 AM) comp.lang.php Hi, If I am given an object like this: $myObj=(object)null; $myObj->fieldName1='hello'; $myObj->fieldName2='world'; $myObj->blah='boo!'; Is it possible to iterate through the field names without knowing them... marksmith5555(101)
Is this the right way to do it?420 (4/22/2009 8:32:52 PM) comp.lang.php I appreciate this is not a PHP specific question, but I am using PHP to do it, and you're a knowledgeable bunch, so here goes. I am writing a custom email client to integrate into my application. I use the v... arestes(103)
One class per file2827 (4/30/2009 9:16:06 PM) comp.lang.php Hello, I think it is a good idea to put each single class (or interface) in a separate file. Some classes or interfaces, however, may be really tiny, like and I hesitate to start a new file just for that. ... thomas4089(238)
Integrating email into PHP app523 (6/10/2009 8:03:26 AM) comp.lang.php Hello hello. I have a dilemma on my hands. I have an application, in production, which uses PHP's IMAP libraries to read inbound emails in a mailbox. Email is tightly integrated into the app itself. The pro... arestes(103)
include() question1118 (7/1/2009 10:05:55 PM) comp.lang.php In this inherited code, the following statement appears include('//home/mine/admin/settings.inc.php'); I'm curious about the double slash at the beginning - seems to not make any sense, that it should be a si... bcohen808(12)
script "chaining"1619 (7/12/2009 10:55:23 AM) comp.lang.php The project I am converting from DataFlex to LAMP has a asynchronous daemon. If a task (such as a report) would take too long to run while attached to the browser, the current system writes the data to a da... nobody22(483)