Notes |
|
(0000006)
|
user4
|
2006-05-02 13:35
|
|
Reminder sent to: dlaporte, kevmcs |
|
|
(0000012)
|
user4
|
2006-05-02 13:52
|
|
|
|
|
There was a typo in release.cgi that I corrected. Did that fix the problem? |
|
|
|
system() calls were splitting out text to STDOUT. Changed to qx//, which allows assignment to a variable. Please let me know if this resolves it. |
|
|
(0000023)
|
user4
|
2006-05-03 10:32
|
|
|
|
(0000024)
|
user4
|
2006-05-03 10:45
|
|
The following diff solves the issue
69c69
< my $cmd = $install_dir."/bin/pfcmd manage register $mac $pid $info";
---
> my $cmd = $install_dir."/bin/pfcmd 'manage register $mac $pid $info'"; |
|
|
(0000057)
|
kevmcs
|
2006-05-09 15:11
|
|
diff in register.cgi
$info=$key.'="'.$info{$key}.'",';
along with
my $cmd = $install_dir."/bin/pfcmd manage register $mac $pid $info";
solved the problem. if $info has spaces (like user_agent) there where problems. cvs is checked in.
Kevin |
|