Re: [PHP-WIN] Configuring and send mails in winxp??

2007-05-31 Thread Jody Williams
I had a similar situation. As a result, I switched to Pear::Mail. On 5/31/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Do you have a firewall rule that prevents incoming email from this particular host? I tried to ping the server smtp.fibertel.com.ar and could not receive a reply. It ma

Re: [PHP-WIN] Problem With Pear::DB

2007-05-09 Thread Jody Williams
Any idea why this does work from the same server? Connect($dsn); $rs = $db->Execute("select [name] from sysobjects"); foreach($rs as $k=>$row) { echo $row[0] . ''; } $db->disconnect(); ?> This is using ADOdb instead of PEAR::DB. Jody On 5/9/07, Stut

Re: [PHP-WIN] Problem With Pear::DB

2007-05-09 Thread Jody Williams
<[EMAIL PROTECTED]> wrote: Jody Williams wrote: > I have a situation where I am unable to connect to a Microsoft SQL > 2005 Database from Windows Server 2003 (IIS + PHP 5.0.4). > > here is the code: > require_once 'DB.php'; > $dsn = "mssql://aspj_transfer:[EM

[PHP-WIN] Problem With Pear::DB

2007-05-09 Thread Jody Williams
I have a situation where I am unable to connect to a Microsoft SQL 2005 Database from Windows Server 2003 (IIS + PHP 5.0.4). here is the code: getMessage().''.$db->getUserInfo()); } // no useful info. just trying to return something. $query = "select [name] as n from sysobjects order by [name]";

Re: [PHP-WIN] Reload/refresh web page

2007-05-04 Thread Jody Williams
I have seen references to using the "refresh" without the content. could this be incorporated into an onload event? On 5/4/07, Alf Stockton <[EMAIL PROTECTED]> wrote: Jody Williams wrote: > what about using: > > That would refresh after 600 seconds. Not quite what I w

Re: [PHP-WIN] Reload/refresh web page

2007-05-04 Thread Jody Williams
what about using: On 5/4/07, Alf Stockton <[EMAIL PROTECTED]> wrote: I need to add some coding to a web page that forces a reload from the server every time the page loads, no matter where the user came from. I already have the following meta tags but that does not do what is required. http:/

Re: [PHP-WIN] So why do I need session?

2007-04-11 Thread Jody Williams
As a side note, there are a lot of companies/organizations that completely block cookies at the firewall level. As a result, the cookie never makes it to the web browser. If relying strictly on cookies for authentication, on every page, the user must re-authenticate. Jody -- PHP Windows Mailin

[PHP-WIN] Concerns about PHP+IIS+Load Balancing

2007-01-12 Thread Jody Williams
I am in a position where our Linux Web Servers are being replaces by Windows Server 2003. This is out of my control (and other PHP Developers, customer requirement). The machines are going to be configured in a Load Balancing configureation. I don't know what version of IIS will be installed.