[PHP] symLink Test also failing. (then is it a permissions issue? - also see my previous post about shell_exec failing)

2009-06-27 Thread Govinda
and in this test, $symLinkTest seems to be returning false, every time. $symLinkTarget='testDir/amex_cid.gif'; $SymLinkNew='testDir/myccGOV.gif'; $symLinkTest=symlink($symLinkTarget, $SymLinkNew); echo "symLinkTest="; echo var_dump($symLinkTest); -- retu

Re[2]: [PHP] symlink

2006-09-23 Thread Tom Rogers
Hi, Saturday, September 23, 2006, 10:37:20 AM, you wrote: RL> On Mon, September 18, 2006 4:53 pm, Ross wrote: >> Can someone explain how and why you would use a symlink in php? RL> A symlink is the Un*x version of a Windows "shortcut" or the Mac's RL> "alias" RL> The difference being that a syml

Re: [PHP] symlink

2006-09-22 Thread Richard Lynch
On Mon, September 18, 2006 4:53 pm, Ross wrote: > Can someone explain how and why you would use a symlink in php? A symlink is the Un*x version of a Windows "shortcut" or the Mac's "alias" The difference being that a symlink actually *works* and a Windows "shortcut" is useless for anything except

Re: [PHP] symlink

2006-09-18 Thread Chris
Ross wrote: Can someone explain how and why you would use a symlink in php? For the same reason you use them in a normal unix based environment. For example a symlink from /usr/bin/php to /usr/local/bin/php - they "appear" to be the same so you can use either. -- Postgresql & php tutorials

[PHP] symlink

2006-09-18 Thread Ross
Can someone explain how and why you would use a symlink in php? R, -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php