Re: [PHP] PHP causing seg fault

2006-10-15 Thread Glenn Richmond
as a result of the return call. Any ideas? Glenn. Richard Lynch wrote: On Thu, October 12, 2006 3:44 am, Glenn Richmond wrote: I'm attempting to run a SugarCRM variant that uses SOAP to access information from the database. The code is causing a seg fault when executing a particular line

[PHP] PHP causing seg fault

2006-10-12 Thread Glenn Richmond
Hi guys, I'm attempting to run a SugarCRM variant that uses SOAP to access information from the database. The code is causing a seg fault when executing a particular line of code. The code executes properly until it calls a generic function in the parent class that causes a seg fault on the

Re: [PHP] Seperate HTML from PHP

2006-10-11 Thread Glenn Richmond
Yes - separation of HTML and PHP code is not really a question of speed or efficiency. It's about coding style. Combining the two together might be fine for small projects, but when that project grows and grows, the readability of your code deteriorates if you don't separate the languages, not to

Re: [PHP] WebMail client

2006-10-04 Thread Glenn Richmond
http://www.roundcube.net/ I can't say enough good things about the roundcube project. Ajax-based, like a desktop email client in a browser. Still got some minor bugs, but works pretty well. Note that it's still a Beta at this point. Cheers, Glenn. Christopher Weldon wrote: Peter Lauri wrote:

Re: [PHP] web based browser...

2006-10-03 Thread Glenn Richmond
Hi guys. http://sourceforge.net/projects/filebrowser This looked like quite a good one. We've been looking at using an ajax-based file browser ourselves, and this one seemed to be at the top of the list. Cheers, Glenn. Richard Lynch wrote: I've used an okay one in the webmasters.com control

Re: [PHP] Coding Style Question...

2006-10-02 Thread Glenn Richmond
Hi Tony, Sounds like a good start. I have to admit that one that I prefer is that HTML code should be completely separated from PHP via the use of a templating engine of some sort (I'm a fan of XTemplate). I'll probably get strong opposition for these comments, but in my opinion, there's nothing

[PHP] Custom Session Handler

2006-09-28 Thread Glenn Richmond
Hi guys, I couldn't find a developers list, so I hope this is the right list to post to. I need to create a custom session handler for our PHP server. We have a memcache server and so want to use that to handle our session information. I was able to get basic session code working via the custom

Re: [PHP] Custom Session Handler

2006-09-28 Thread Glenn Richmond
the biggest benefit from my point of view is not having to re-merge the changes in for every release of PHP :) Who do I talk to about becoming a developer on the php source? Cheers, Glenn. Richard Lynch wrote: On Thu, September 28, 2006 1:46 am, Glenn Richmond wrote: I couldn't find