Re: [GENERAL] OID output problems

2000-05-03 Thread Ron Chmara
surfer girl wrote: > > The documentation on this is so scarse it's hard to figure out what the right format >is supposed to be for all this. After much searching (websites, various mailing list >archives), I found the "note" that PHP has a special variable "userfile" for file >uploads. It has

[GENERAL] Job openings (FreeBSD/C/php/postgresql)

2000-05-03 Thread Alfred Perlstein
Hopefully this is considered on-topic, please trim cc. http://www.wintelcom.net/\n\n"); exit; ?> Work with the best or die like the rest. hope to hear from you, -- -Alfred Perlstein - [[EMAIL PROTECTED]|[EMAIL PROTECTED]] "I have the heart of a child; I keep it in a jar on my desk."

Re: [GENERAL] OID output problems

2000-05-03 Thread surfer girl
The documentation on this is so scarse it's hard to figure out what the right format is supposed to be for all this. After much searching (websites, various mailing list archives), I found the "note" that PHP has a special variable "userfile" for file uploads. This I have changed, and a straigh

[GENERAL] Removing NOT NULL Contraint

2000-05-03 Thread Matthew
I may be missing something simple here, but I have an attribute in a table that was created as NOT NULL. I now need to remove this constraint. I don't see a proper way to do this. I think I can update the pg_attribute table and change attnotnull from true to false. Is this an acceptable soluti

[GENERAL] Mail Relay sites ...

2000-05-03 Thread The Hermit Hacker
In order to try and improve the speed of mail delivery, over the past little while we've been using a feature in Mj2 called a 'delivery_rule', which allws us to setup various hosts as 'mail relays' ... What we're trying to do, as much as possible, is split things up quasi-regionally, based on th

Re: [GENERAL] OID output problems

2000-05-03 Thread Ross J. Reedstrom
On Tue, May 02, 2000 at 10:13:14PM -0800, surfer girl wrote: > --- "Robert B. Easter" <[EMAIL PROTECTED]> wrote: > > > >Try recompiling php 4.0RC1 or whatever is current with the latest Apache > >source (1.3.12). I'm thinking maybe you are not running php as compiled into > >the server. > > Tha

[GENERAL] postgresql-7.0RC3: slight compile problem on AIX

2000-05-03 Thread David R. Favor
Script started on Wed May 3 05:54:08 2000 zsh configure && gmake all Package appears to be name=postgresql version=7.0RC3 Using ./configure CC = xlc CXX = xlC CFLAGS = -qmaxmem=16384 -ma -O2 -I/usr/local/include LDFLAGS = -L/usr/local/lib -L/lib LIBPATH = /usr/local/lib:/lib LD_L

[GENERAL] Postgres-Apache authentication link?

2000-05-03 Thread Ramses v. Pinxteren
Hello World, For a website I am developing I have to create a member section. At this section I also have to add some pictures. The HTML code is already generated using PHP, but now I have to add the security for the jpg files, and that is somewhat of a problem. Who knows how to secury this?? I

Re: [GENERAL] date format problem

2000-05-03 Thread Anand Raman
hi bill Null fields shouldnt be the cause of the problem.. A null text field gets translated to a null datetime.. The problem must be because ur database might be specifying the field to be NOT NULL.. Check it out .. If thats the cause there is no way but to drop that constraint.. Hope this he

RE: [GENERAL] date format problem

2000-05-03 Thread Lincoln Yeoh
I dunno, I'm using 6.5.3 and have no probs pgdumping, pguploading and using null dates - moved my app to another server etc, and the null dates are still there. The null dates are dumped as \N which presumably means NULL (but for some reason typing \N (two characters - backslash then N) works for

Re: [HACKERS] Re: [GENERAL] Re: [SQL] textsubstr() ...? for postgres 7 beta5

2000-05-03 Thread Lincoln Yeoh
Is there a copy of the old 6.5.x docs lying around somewhere? We'll probably switch to 7.0 eventually but in the meantime it'll be good to be able to access the old docs for 6.5.x Cheerio, Link. At 08:30 PM 30-04-2000 -0400, Tom Lane wrote: >[EMAIL PROTECTED] writes: >> it is not textsubstr()

RE: [GENERAL] date format problem

2000-05-03 Thread Bill Barnes
Hello Anand: Thanks for the input. The problem turned out to be date fields with null values. Disappointing! A lot of my Sybase procedures tested for null dates. So my workaround was to edit the null dates to a pseudo date. This is least got my database poplulated. Will try the cast for que