Also add an entry in the FAQ about that.
* Add a new script bin/truncate_radacct which will delete all sessions from the radacct table which
are older than a configurable number of days
* Fix a typo in sql.attrmap. Fix by Evren Yurtesen <eyurtese@turkuamk.fi>
+* Work even when register_globals if off. Suggestion from Evren Yurtesen <eyurtese@turkuamk.fi>
+ Also add an entry in the FAQ about that.
Ver 1.61:
* Add a string encoder for greek
* If general_decode_normal_attributes is set then encode attributes in lib/ldap/change_info. In the near future
If you are using sessions then remember to use the 'Clear Cache' page after making any changes
+>
+> It is still not working
+>
+
+Check that the register_globals in php.ini is set to on. As of PHP 4.2.0 this is set to off by default. The latest
+versions of dialup_admin will work even if register_globals is set to off if the php version is > 4.1.0
+(Thanks to Evren Yurtesen <eyurtese@turkuamk.fi> for the suggestion).
+
--
kkalev
<?php
+#
+# Things should work even if register_globals is set to off
+#
+$testVer=intval(str_replace(".", "",'4.1.0'));
+$curVer=intval(str_replace(".", "",phpversion()));
+if( $curVer >= $testVer )
+ import_request_variables('GPC');
# If using sessions set use_session to 1 to also cache the config file
#
$use_session = 0;