[PHP-WIN] 1 item remaining in IE6

2004-07-21 Thread Daniel Crespo
Hi all Maybe, this is not for this discution group. However, I'll try to get help. I have an archive (image.php) that receives certain parameters to draw a line (if someone want an example of this, tell me). In my page, a make a lot of image.php requests, and the page where I'm putting them sh

php-windows@lists.php.net

2004-07-21 Thread Oliver John V. Tibi
*Chuckles!* And I thought we were on php.windows. :) -- Running 'ojtibi' on '127.0.0.1' (BATCH_OPTIMISTIC mode). "Live free() or die()." "Jason Barnett" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Honestly, it's rude to directly email people trying to help you. You should >

Fw: [PHP-WIN] Re: php5 and phpMyAdmin

2004-07-21 Thread Adrian Cooper
Hi, > My apologies, I quit using phpmyadmin before php5.0.0 came out Is there anything better than phpmyadmin out there that works with Windows? Thanks! Regards, Adrian. > -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-WIN] Re: Handling Linux directory paths in Win32

2004-07-21 Thread Paul Menard
Just a comment or thought on Jason's reply. I thought you could use '/' as the seperator and the PHP engine would figure out based on the run-time OS what the actual path format would be. Hence you can use actual path names like; E:/path1/path2/path3/somefile.php in your include and require sta

[PHP-WIN] Re:

2004-07-21 Thread Ssb
<>-- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] Re: Handling Linux directory paths in Win32

2004-07-21 Thread Jason Barnett
I've run into this exact problem many times. Two things: 1) use the PEAR constant DIRECTORY_SEPERATOR, or define it yourself if (PHP_OS == 'Win32' || PHP_OS == 'WinNT') { define('DIRECTORY_SEPERATOR', '\'); } else { define('DIRECTORY_SEPERATOR', '/'); } 2) I have two ways that I solve the rela

[PHP-WIN] Directory functions and php 5

2004-07-21 Thread Andres Vergara
Hello, I just installed php 5 on Windows 2003 IIS 6.0. PHP seems to be working fine, however none of the directory functions seems to be working (I tried amongst others is_dir() and opendir()), they do not return anything, is like they just don't do anything (no errors either). Has anybody had thi

[PHP-WIN] Handling Linux directory paths in Win32

2004-07-21 Thread Danielb
I'm trying to get a site written for a linux server running on my windows PC to do some development work on it. One of the problems I've encountered is some hard coded directory paths like '/var/vhost/sitename/', '/var/vhost/sitename/Modules/', '/var/vhost/sitename/Pics' etc... My idea for dealing