Search found 4 matches

by Shucklak
Fri Feb 23, 2007 3:29 pm
Forum: PHP - Code
Topic: running `iwlist scan` inside php on Linux server[SOLVED]
Replies: 6
Views: 1477

That did it!
Wow I can't thank you enough. I've spent countless hours working on this.
Thanks!
by Shucklak
Fri Feb 23, 2007 2:57 pm
Forum: PHP - Code
Topic: running `iwlist scan` inside php on Linux server[SOLVED]
Replies: 6
Views: 1477

The output from that was:
int(1)
: array (
)

int(127)
: array (
0 => 'sh: doesnotexist1234: command not found',
)
by Shucklak
Fri Feb 23, 2007 11:11 am
Forum: PHP - Code
Topic: running `iwlist scan` inside php on Linux server[SOLVED]
Replies: 6
Views: 1477

The exact output of that was:
int(127)
: array (
)
Is it possible it is a permission problem and that is why I cannot run the program?
by Shucklak
Wed Feb 21, 2007 10:11 am
Forum: PHP - Code
Topic: running `iwlist scan` inside php on Linux server[SOLVED]
Replies: 6
Views: 1477

running `iwlist scan` inside php on Linux server[SOLVED]

Hello, I am trying to tun `iwlist scan` inside some php but I am having some trouble. I have tried all the following without any results: $output = exec("iwlist scan"); $output = `iwlist scan`; $output = shell_exec("iwlist scan"); I have even tried making "iwlist scan" ...