Re: [PHP] error message

2006-04-26 Thread Richard Lynch
Re-boot. On Wed, April 26, 2006 4:27 pm, cybermalandro cybermalandro wrote: > Yes, > Yes and > Yes although I am not running apache I am running IIS. > > On 4/26/06, Richard Lynch <[EMAIL PROTECTED]> wrote: >> >> On Wed, April 26, 2006 4:08 pm, cybermalandro cybermalandro wrote: >> > I have set

Re: [PHP] Filter out MS Word 'quotes' for RSS

2006-04-26 Thread Richard Lynch
On Wed, April 26, 2006 4:45 am, Kevin Davies wrote: > I've got a forum/blog system which is displaying correctly in the > browser. > However, I've also got an RSS feed that is created from the data > entered. > > It seems that some of the users are copying and pasting from MS Word > or > other pack

RE: [PHP] I want to write a Multi-threaded PHP Application

2006-04-26 Thread Warren Vail
I did one (well sort of) once. I created a php script which was started by cron every minute. It read a mysql table looking for items to process, and on finding one, would stamp the entry in the table as being processed and it would then proceed with what it needed to do, which sometimes took a

Re: [PHP] session

2006-04-26 Thread Richard Lynch
On Wed, April 26, 2006 2:53 am, Sichta, Daniel wrote: > I have web app which using frames. After session timeout my session is > killed. > The problem is that session is killed even when I doing requests to > the > server. > I know why (session is "chain" to the frameset page) but what's the > solu

RE: [PHP] I want to write a Multi-threaded PHP Application

2006-04-26 Thread Richard Lynch
On Wed, April 26, 2006 6:05 pm, Warren Vail wrote: > "not likely" until at least PHP 8.0. However, my needs for a thread > are > very simple and might be able to avoid the complexities of shared One thing you could consider... If you had one "main" script that did a stream_select on multiple URL

Re: [PHP] Filter out MS Word 'quotes' for RSS

2006-04-26 Thread D. Dante Lorenso
Richard Lynch wrote: On Wed, April 26, 2006 4:45 am, Kevin Davies wrote: Obviously I need to convert these on entry, or on output into RSS. Does anyone know of an easy way to do this, or is it a case of identifying each unusual character individually? You don't necessarily need to fix

Re: [PHP] Natural order of things.

2006-04-26 Thread tedd
On Wed, 2006-04-26 at 16:57, Robert Cummings wrote: On Wed, 2006-04-26 at 16:51, tedd wrote: > Hi gang: > > I posted the following question to the MySQL list, but the only > answer I received thus far was a php solution (it didn't work for > what I wanted). > > As such, maybe if I post a

Re: [PHP] error message

2006-04-26 Thread chris smith
On 4/27/06, cybermalandro cybermalandro <[EMAIL PROTECTED]> wrote: > I have set in display_errors = off on my php.ini but I can still see ODBC > related error messages when I try to duplicate an ODBC error. Am I missing > something to turn this off? Can you produce a small test case? Maybe post a

Re: [PHP] Natural order of things.

2006-04-26 Thread Robert Cummings
On Wed, 2006-04-26 at 21:15, tedd wrote: > >On Wed, 2006-04-26 at 16:57, Robert Cummings wrote: > >> On Wed, 2006-04-26 at 16:51, tedd wrote: > >> > Hi gang: > >> > > >> > I posted the following question to the MySQL list, but the only > >> > answer I received thus far was a php solution (it d

Re: [PHP] error message

2006-04-26 Thread Jason Barnett
Let's not open an error report just yet... there are already too many "bugs" in the database! A snippet of the relevant code would be nice though. Perhaps your odbc_errormsg($conn) is being echo'd to stdout? Or you are using those fun Exception beasts? On 4/26/06, chris smith <[EMAIL PROTECTED

[PHP] PHP 4.3.11, call_user_func and instances of classes

2006-04-26 Thread David Otton
A bit of an oddity, this. There's some example code attached which illustrates my problem. I am attempting to call a method of an instance of an class from outside that instance, using call_user_func(). What's happening is that my attempt to call array ($this, 'AddOne') is silently being rewrit

Re: [PHP] PHP 4.3.11, call_user_func and instances of classes

2006-04-26 Thread Martin Alterisio
The problem is not what it seems. PHP4 assigns object by copy, not by reference. This is causing the call_user_func() to use a copy of the object instead of the original object. So, all modifications are lost once the call is done. One solution to this is to assign objects by reference: $addition

[PHP] Files and permission

2006-04-26 Thread Peter Lauri
Best group member, I am creating a file system class. I will have a web based document center with different access roles. All users in the system will not be able to view the files. It will all be run thru the web tool. I will have a class that is called file. That file can give an authori

Re: [PHP] Files and permission

2006-04-26 Thread Robert Cummings
On Thu, 2006-04-27 at 00:18, Peter Lauri wrote: > Best group member, > > > > I am creating a file system class. I will have a web based document center > with different access roles. All users in the system will not be able to > view the files. It will all be run thru the web tool. > > > >

<    1   2