Re: Re: [PHP-WIN] Permission deny on connecting MS Access database

2004-11-29 Thread Emperor Kang Xi
Hi,Thanks michael, i have tired before, and wont run and produce the same error messages. But it can run with while the MDB file is at local drive (what i need is network drive).but thanks alot anyway.. maybe i should try other way.. åç <[EMAIL PROTECTED]>Re: [PHP-WIN] Permission deny on

RE: [PHP-WIN] Difference between Installer and ZIP?

2004-11-29 Thread Armando
If you're looking for quick and dirty just to get it up and running fast to play with, then download the installer. It's that much smaller because it just doesn't include a lot of extras such as external extensions. I personally suggest the ZIP package and doing a manual install. There is document

RE: [PHP-WIN] problem to open dir

2004-11-29 Thread Armando
Try changing your $dir variable to: $dir="C:\\Documents and Settings\\pravin\\Desktop\\abcd2"; Failing that, try using the Documents and Settings shortname: $dir="C:\Docume~1\pravin\Desktop\abcd2"; Or: $dir="C:\\Docume~1\\pravin\\Desktop\\abcd2"; If none of these work, perhaps also try them a

RE: [PHP-WIN] problem to open dir

2004-11-29 Thread Pravin-Kumar
hi mike! $source='F:\cdac2'; echo $source; if(is_dir($source)){echo "it is a dir.";} else{echo "it is not a dir..";} i had tried ur suggestion .. not working dude :( see i had one more thing .. it says "it is not a dir.." please help me list... --

RE: [PHP-WIN] problem to open dir

2004-11-29 Thread Mike
When you set the $dir variable, try doing so with single quotes - the \ character is used to escape things and might be causing some problems. If that makes no sense, it's because I'm falling asleep. Good luck. -M > -Original Message- > From: Pravin-Kumar [mailto:[EMAIL PROTECTED] > S

[PHP-WIN] problem to open dir

2004-11-29 Thread Pravin-Kumar
hi all i am getting some unexpected error while try to read a local dir.. it is working on the pc where apache is running ..but same code not working while trying from other pcs in lan.. here is code.. $dir="C:\Documents and Settings\pravin\Desktop\abcd2"; if (is_dir($dir)) { if ($dh = opendir

[PHP-WIN] Problemas con las igualdades

2004-11-29 Thread T4NG0
Listeros: estoy tratando de establecer una igualdad y no logro comprender el funcionamiento, el código es el siguiente. dado X archivos en mi directorio cuyo contenido puerde ser "ACTIVADO", "DESACTIVADO" o "NULO". yo debo determinar el contenido de ellos. el problema es que yo logro ver bien

RE: [PHP-WIN] cannot send mail via localhost

2004-11-29 Thread Mike
Please respond to the list. You do realize that port 23 is the telnet port and not the SMTP port, right? Why is your mail server responding on 23 and not 25? What happens when you telnet localhost 25 And I'll repeat my request for some code... -M The mail is a standar mailform.

RE: [PHP-WIN] cannot send mail via localhost

2004-11-29 Thread Mike
This is going to require a lot more information from your end if you want help. Show some code, explain your mail server setup, explain any errors you receive. Also, can you telnet to port 25 on localhost? Does anything (e.g., the mail server) respond? What's the result of a HELO? -M > I am tr

[PHP-WIN] cannot send mail via localhost

2004-11-29 Thread Ross Hulford
I am trying to test my form locally, however it doesn't get picked up my mailbox. The form is fine and I even set the access in IIS to 127.0.0.1 so the relay error is not a porblem anymore. This must be a setup problem. Help please, Ross -- PHP Windows Mailing List (http://www.php.net/) T

[PHP-WIN] Re: How to configure PHP5 with support of Java 1.4 on window platform

2004-11-29 Thread Shen Kong
Rui Zhang wrote: Hi Fellows I am trying to integrate PHP and Java,and this is the situation I have. I am using Apache 2.0.52 and PHP 5.0.2, and my java version is 1.4. PHP works fine with Apache, but once I want to call some java functions based on my setting made to the php.ini, Apache crashes. PH

[PHP-WIN] How to configure PHP5 with support of Java 1.4 on window platform

2004-11-29 Thread rui zhang
Hi Fellows I am trying to integrate PHP and Java,and this is the situation I have. I am using Apache 2.0.52 and PHP 5.0.2, and my java version is 1.4. PHP works fine with Apache, but once I want to call some java functions based on my setting made to the php.ini, Apache crashes. PHP is installed

[PHP-WIN] How to configure PHP5 with support of Java 1.4 on window platform

2004-11-29 Thread rui zhang
Hi Fellows I am trying to integrate PHP and Java,and this is the situation I have. I am using Apache 2.0.52 and PHP 5.0.2, and my java version is 1.4. PHP works fine with Apache, but once I want to call some java functions based on my setting made to the php.ini, Apache crashes. PHP is installed u

[PHP-WIN] Re: Online-php-games

2004-11-29 Thread PHPDiscuss - PHP Newsgroups and mailing lists
Cyrus Misthalin wrote: > Does someone of you own a php-online-game? I am curretly coding quite a complex MMO game in php, based around a mySQL db, if you have a look at wardrox.com you will see the game. Post in the forum if you have any further questions and i would be glad to help. -- PHP Win

RE: [PHP-WIN] edge detection

2004-11-29 Thread Gryffyn, Trevor
I don't know that I could help you in any case, but some additional information might be helpful. Are you talking specifically about doing an edge detection type filter for images like you'd find in Photoshop? If you can clarify the question, someone might have some information for you. If you f

[PHP-WIN] Difference between Installer and ZIP?

2004-11-29 Thread Ian
Hi there, Just went to php.net to download the installer/zip. I notice that the zip is quite large 7 megs or so... but the installer is only 2 megs.. The installer says CGI ONLY, i quite a newbie at this and I just wish to install it on the server, what are the differences? The installer says

RE: [PHP-WIN] Cookie's folder

2004-11-29 Thread Gryffyn, Trevor
It's probably not the cookies you're trying to fix. The cookies are stored on the client side and should be automatically set up by the client's web browser. There should never be a problem with a cookie folder not existing and you needing to do something to fix it. (although I'm sure someone rea

RE: [PHP-WIN] HI! can u help me?

2004-11-29 Thread Gryffyn, Trevor
In addition to the opendir() and readdir() there's also the dir() class: http://us2.php.net/manual/en/class.dir.php Don't forget to take a look at the script on the readdir() page: You need to remember that "." and ".." are condidered directories (aka folders). You can also use is_dir() and i

RE: [PHP-WIN] CHMOD function issue.

2004-11-29 Thread Mike
I just want to make sure of something... What OS is the machine this is happening on? This is the PHP-Windows list and CHMOD really doesn't work on Windows - it's a Unix command. But if you're having problems on a unix system, check to see if there is a umask value set that would be causing this

[PHP-WIN] CHMOD function issue.

2004-11-29 Thread Kuldeep
Hello All, I have made a admin area on my site where it allows the admin to change the pagelayout, I.E : font color, table color, font size, background color. the Folder permission is set to 755 and the file permissions are set to 644. I used the CHMOD funtion to change the permission to 666 befo