-
Its not a problem with bonding - its something to do with duplicate IP addresses (which encompasses bonding and tunnels etc)
2007-07-26 02:42:48 UTC in net-snmp
-
Gidday.
I've had to spell check the entire file structure of phpmyprepaid.
There are two common errors
"minimum" is spelt "minimun" (should end in a M)
"lenght" is spelt "length"
These are all through the code, in both variable names and text strings.
2007-06-28 00:46:11 UTC in phpMyPrepaid
-
At line 45 of www/include/account/create_NF_ID.php it should not say:
//////////////////////////////////////////////////////////////////////////
// CREATE A RANDOM PASSWORD OF EIGHT LETTERS //
//////////////////////////////////////////////////////////////////////////
$upasswd=keygen($passwd_lgth,"passwd",$use_caps);
if...
2007-05-28 01:43:02 UTC in phpMyPrepaid
-
include/divers/pullUser.php line 52 should say
$query = "SELECT Value AS Max FROM radcheck where Attribute='$sessionTimeAttr' AND UserName='$pullUser'";
I'm not sure if $sessionTimeAttr is the correct attribute to be searching for though.
2007-05-25 02:56:46 UTC in phpMyPrepaid
-
The user-password line IS being inserted in the database.
mysql> select * from radcheck;
+----+----------+-------------------+----+--------------------------------------------+
| id | UserName | Attribute | op | Value |
+----+----------+-------------------+----+--------------------------------------------+
| 40 | yadq37 | User-Password |...
2007-05-25 02:45:00 UTC in phpMyPrepaid
-
I do believe that www/include/account/DBinsert.php is to blame.
Line 176 should say
$q2= "INSERT INTO radcheck (UserName, " .
and not
$q2= "INSERT INTO $dbtable (UserName, " .
2007-05-25 02:43:26 UTC in phpMyPrepaid
-
Please note - this functionality worked fine in 0.4 b2.
2007-05-25 02:06:23 UTC in phpMyPrepaid
-
Similar but different problem to previous bug.
When creating Timed accounts, the data IS written to the database, but no password line is added to radcheck table.
SESSION ID : ece553466113fe922bce3ff2266ec636
USER STATUS : 3
LOCATION : 1
LOCATION NAME : Somewhere
BUTTON : CR_Timed
USERNAME NAME LENGHT KEYGENN aocr87 PASSWD LGHT KEYGENN NAME LENGHT KEYGENN yshd9 PASSWD LGHT KEYGENN...
2007-05-25 02:05:04 UTC in phpMyPrepaid
-
I'm running phpmyprepaid 0.4 beta3 with chillispot 1.1.0 on a fedora box.
Octet account creation fails with these diagnostics:
SESSION ID : ecd553466131fe992bce3ff2626ec634
USER STATUS : 3
LOCATION : 1
LOCATION NAME : Somewhere
BUTTON : CR_Octets
USERNAME NAME LENGHT KEYGENN aqn02 PASSWD LGHT KEYGENN NAME LENGHT KEYGENN jmqg29 PASSWD LGHT KEYGENN NAME LENGHT KEYGENN ntk61 PASSWD LGHT...
2007-05-25 02:01:31 UTC in phpMyPrepaid
-
Its around line 291, and should say something like this.
$acctiv=$acctIntervalValue*60;
$q8= "INSERT INTO $acctIntervalAttrdb (UserName," .
" Attribute, op, Value) " .
"VALUES" .
"('$id'," .
" '$acctIntervalAttr', ':=', '$acctIntervalValue')";
In 4.2 b3 mine said only
$q8= "INSERT INTO $acctIntervaldb (UserName," .
2007-05-25 01:33:46 UTC in phpMyPrepaid