Hi all,

I'm unsure how to describe this but I'll try.

The following code works fine in its own PHP script;

$mkdircmd = '/bin/mkdir /homes/'.$uid;
exec($mkdircmd);

But when placed in a larger PHP script being part of the ldap_provisioning module in Drupal, the Drupal GUI is blank until I do;

$mkdircmd = "'/bin/mkdir /homes/'.$uid";

... were I surrounded the variable with "", which causes it to not work.

I'm totally unsure how to approach this and am hoping syntax adjustments will fix it.

- aurf

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to