RE: [nyphp-talk] Potential Setting Problem

2008-05-13 Thread Peter Sawczynec
The Apache error log, Windows system and application error logs and when PHP is running the PHP error log are very helpful in getting a clue on this type of issue. P -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Phil Duffy Sent: Tuesday, May 13, 2008 11

Re: [nyphp-talk] Potential Setting Problem

2008-05-13 Thread Michael Southwell
John Campbell wrote: On Tue, May 13, 2008 at 11:57 AM, Phil Duffy <[EMAIL PROTECTED]> wrote: An address of localhost/seagull/www brings up the Index of seagull/www which includes index.php. However, localhost/seagull/www/index.php does not execute and display the Seagull entry screen. The b

Re: [nyphp-talk] Potential Setting Problem

2008-05-13 Thread John Campbell
On Tue, May 13, 2008 at 11:57 AM, Phil Duffy <[EMAIL PROTECTED]> wrote: > An address of localhost/seagull/www brings up the Index of seagull/www which > includes index.php. However, localhost/seagull/www/index.php does not > execute and display the Seagull entry screen. The behavior is identic

RE: [nyphp-talk] Potential Setting Problem

2008-05-13 Thread Phil Duffy
Please inform me if this query is mis-directed. After a year of being away from PHP development I am trying to re-establish an environment which combines Apache 2.2, Zend Studio 5.5 (including PHP 5) and the upgraded version of Seagull framework on Windows XP. I know the Apache 2.2 layer is work

Re: [nyphp-talk] Schema Validation

2008-05-13 Thread Tim Gales
Ben Sgro wrote: Hello, I'm having a lot of trouble getting the dom object schema validation to work. After looking on google, it seems there isn't a straight forward way to handle complex schemas. Take the following code: if (is_file($schemaFile)) { $domObj->load($r

RE: [nyphp-talk] Installing postgresql on windows xp

2008-05-13 Thread Hans Zaunere
Jonathan, et al, When posting a message, please do not reply to the digest email you receive. For everyone's benefit, take the time to compose a new email message. To address your question, you may find this link useful: http://www.google.com/search?q=postgresql+windows+xp And you're encourage

[nyphp-talk] Installing postgresql on windows xp

2008-05-13 Thread Jonathan Wagener
Hi guys, how would I be able to install postgresql on my pc - im running windows xp pro (also running wampserver). Jonathan Wagener Web Developer / Architect Amoeba Business Solutions Cell:+27 72 928 0513 Office: +27 21 785 1424 Web:www.amoeba.co.za Blog:

Re: [nyphp-talk] Schema Validation [Solved]

2008-05-13 Thread Ben Sgro
Hello, The first problem is that the .xsd was not up to date. The second is that you cannot call load() on an xml string, you have to call loadXML(). load() is for a file. - Ben Ben Sgro wrote: Hello, I'm having a lot of trouble getting the dom object schema validation to work. After look

[nyphp-talk] Schema Validation

2008-05-13 Thread Ben Sgro
Hello, I'm having a lot of trouble getting the dom object schema validation to work. After looking on google, it seems there isn't a straight forward way to handle complex schemas. Take the following code: if (is_file($schemaFile)) { $domObj->load($requestXml);