[PHP-DB] Struggling to install php4 on win 2000 system with apache2

2004-12-07 Thread Gabriel kolbe
I have Windows 2000 on my system. I have installed Apache 2 and it seems to work fine, when I test it, it goes to the 'localhost' dir. PHP is the problem, I have tried about 5 different websites's installation manuals to no avail. I have tried to do a manual installation I have downloaded

Re: [PHP-DB] Struggling to install php4 on win 2000 system with apache2

2004-12-07 Thread Micah Stevens
Well for one thing, you're telling it to use the module, and then you're also telling it to use php.exe to parse the files, which is CGI. So that won't work. Pick one or the other. Here's the instructions: http://www.php.net/manual/en/install.windows.apache2.php Pick install as a module, or

Re: [PHP-DB] Struggling

2004-05-05 Thread Mark
--- Erik Meyer [EMAIL PROTECTED] wrote: Hope someone can help me. I have two tables: evt_details evt_sponsors The structure is as follows: evt_details evt_sponsors evt_detail_id (INT)(PK)

[PHP-DB] Struggling

2004-05-04 Thread Erik Meyer
Hope someone can help me. I have two tables: evt_details evt_sponsors The structure is as follows: evt_details evt_sponsors evt_detail_id (INT)(PK) evt_sponsor_id (INT)(PK) evt_detail_title

RE: [PHP-DB] Struggling with PG SQL and Large Objects

2002-07-25 Thread eric . jones
- 866-721-4102 -Original Message- From: Cornelia Boenigk [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 3:17 PM To: [EMAIL PROTECTED] Subject: Re: [PHP-DB] Struggling with PG SQL and Large Objects Hi Eric It was my understanding (from a friend) that I could actually store

Re: [PHP-DB] Struggling with PG SQL and Large Objects

2002-07-25 Thread Cornelia Boenigk
Hi Eric Do you have any examples of uploading via post Yes and downloading via visiting a download page for this? No, sorry. The Upload is not difficult. There is an example in the PHP manual at php.net. The more interesting question is which datatype you want to use for the uploaded

[PHP-DB] Struggling with PG SQL and Large Objects

2002-07-24 Thread eric . jones
CLASSIFICATION: UNCLASSIFIED I'm creating a script to upload documents (word, PDF, text, ppt, etc files) to a PG 7.2 DB. I currently can upload the file using pg_lo_import. I get back my OID which I store in a separate table and I can remove the files using the unlink command. However for the

Re: [PHP-DB] Struggling with PG SQL and Large Objects

2002-07-24 Thread Cornelia Boenigk
Hi Eric I currently can upload the file using pg_lo_import. I get back my OID which I store in a separate table I think this is the point. PostgreSQL doesn't store the uploaded file physically in the table but only the OID which is a reference to the file which is stored in a system catalogue.

RE: [PHP-DB] Struggling with PG SQL and Large Objects

2002-07-24 Thread eric . jones
Cell - 520-980-2136 Email Pager - [EMAIL PROTECTED] Direct Private Fax - 866-721-4102 -Original Message- From: Cornelia Boenigk [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 11:55 AM To: [EMAIL PROTECTED] Subject: Re: [PHP-DB] Struggling with PG SQL and Large Objects Hi Eric

Re: [PHP-DB] Struggling with PG SQL and Large Objects

2002-07-24 Thread Cornelia Boenigk
Hi Eric It was my understanding (from a friend) that I could actually store the files in the database and thereby eliminate me having to setup permissions If you use the large-objects-interface then the files go somewhere else and the references (OIDs) are stored in the tables. Another way