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
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
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 Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
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
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
*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
>
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