php and exec problem

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Macius The Great

    php and exec problem

    Hello
    I have no idea what is wrong :
    my script goes :
    ....
    $add="/usr/bin/htpasswd -b /var/www/users/users ".$HTTP_GET_VAR S["login"]."
    ".$HTTP_GET_VAR S["haslo"];
    $str=exec($add) ;
    ....
    Script is working witout any problem warnings error messages but line in
    file users is not added
    I dont no why? :(

    if I do smoethink like this from command line (as user www)
    $php -f g.php

    skrypt g.php :

    <?
    $add="/usr/bin/htpasswd -b /var/www/users/users xxx xxx1";
    $str=exec($add) ;
    ?>

    line is added
    I have no idea what is wrong - why from command line exec is working but
    from http session is not.
    please any ideas ?
    (system OpenBSD3.3 php 4.2.3 )

    regards
    MK



Working...