Bug#461467: cupsys: Upgrade from sarge to etch breaks printing with HP LaserJet 1020

2008-01-27 Thread Arve Seljebu
Package: cupsys Followup-For: Bug #461467 Seems like my problem wasn't the cupsys upgrade. After upgrading to etch, the kernel upgrade removed hotplug in advance for udev. And after a power outage, the printer had lost its firmware. Since the /etc/hotplug directory wasn't purged, foo2zjs didn't

Bug#461467: cupsys: Upgrade from 1.2.7-4etch1 to 1.2.7-4eth2 breaks printing with HP LaserJet 1020

2008-01-18 Thread Arve Seljebu
Package: cupsys Version: 1.2.7-4etch2 Severity: normal After I upgraded to cupsys 1.2.7-4etch2, I'm unable to print with my HP LaserJet 1020. The printer is connected to USB. Have tried to print from clients over IPP and from "Print Test Page" in the web interface. I've set LogLevel to debug in

Bug#368662: freeradius-dialupadmin: Online Users page shows "unknown free lines" independent of nas_port_num value

2006-05-23 Thread Arve Seljebu
Package: freeradius-dialupadmin Version: 1.0.2-4 Severity: minor Here is a patch to solve this bug: --- user_finger.php32004-04-20 15:14:18.0 +0200 +++ /usr/share/freeradius-dialupadmin/htdocs/user_finger.php3 2006-05-23 23:17:01.177267176 +0200 @@ -109,7 +109,7 @@

Bug#335149: Max Results aka pagesize always falls back to default value (10 results)

2005-10-21 Thread Arve Seljebu
I forgot one diff: --- usr/share/freeradius-dialupadmin/lib/sql/find.php3 2004-04-18 16:28:14.0 +0200 +++ /usr/share/freeradius-dialupadmin/lib/sql/find.php3 2005-10-22 02:43:28.160757976 +0200 @@ -9,7 +9,7 @@ $link = @da_sql_pconnect($config); if ($link){ $search = da_sql_esca

Bug#335149: freeradius-dialupadmin: Max Results aka pagesize always falls back to default value (10 results)

2005-10-21 Thread Arve Seljebu
Package: freeradius-dialupadmin Version: 1.0.2-4 Severity: normal This is because is_int [1] is used on a post input instead of is_numeric [2]. Pagesize actually works in user_stats.php3, but this is a spell error on the variable $pagesize. [1] http://www.php.net/manual/en/function.is-int.php

Bug#333704: freeradius-dialupadmin: README.Debian should recomend turning register_globals in PHP

2005-10-19 Thread Arve Seljebu
On 10/19/2005, "Paul TBBle Hampson" <[EMAIL PROTECTED]> wrote: >On Wed, Oct 19, 2005 at 12:13:40AM +0200, Arve Seljebu wrote: > >> On 10/16/2005, "Arve Seljebu" <[EMAIL PROTECTED]> wrote: > >>>On 10/16/2005, "Paul TBBle Hampson" &

Bug#333704: freeradius-dialupadmin: README.Debian should recomend turning register_globals in PHP

2005-10-18 Thread Arve Seljebu
On 10/16/2005, "Arve Seljebu" <[EMAIL PROTECTED]> wrote: >On 10/16/2005, "Paul TBBle Hampson" <[EMAIL PROTECTED]> wrote: > >>On Thu, Oct 13, 2005 at 12:34:26PM +0200, Arve Seljebu wrote: >>> Package: freeradius-dialupadmin >>>

Bug#334299: freeradius-dialupadmin: test against RADIUS fails because of dictionary permission

2005-10-17 Thread Arve Seljebu
On 10/17/2005, "Paul TBBle Hampson" <[EMAIL PROTECTED]> wrote: >On Mon, Oct 17, 2005 at 01:06:39AM +0200, Arve Seljebu wrote: >> Package: freeradius-dialupadmin >> Version: 1.0.2-4 >> Severity: normal > >> When trying to test against RADIUS,

Bug#334299: freeradius-dialupadmin: test against RADIUS fails because of dictionary permission

2005-10-16 Thread Arve Seljebu
Package: freeradius-dialupadmin Version: 1.0.2-4 Severity: normal When trying to test against RADIUS, apache returns the following error message: radclient: dict_init: Couldn't open dictionary "/etc/freeradius/dictionary": Permission denied Changing permission for dictionary fixes the problem.

Bug#333704: freeradius-dialupadmin: README.Debian should recomend turning register_globals in PHP

2005-10-16 Thread Arve Seljebu
On 10/16/2005, "Paul TBBle Hampson" <[EMAIL PROTECTED]> wrote: >On Thu, Oct 13, 2005 at 12:34:26PM +0200, Arve Seljebu wrote: >> Package: freeradius-dialupadmin >> Version: 1.0.2-4 >> Severity: normal > >> Since freeradius-dialupadmin is developed o

Bug#333744: freeradius-dialupadmin: tot_stats and SQL password

2005-10-13 Thread Arve Seljebu
Package: freeradius-dialupadmin Version: 1.0.2-4 Severity: normal My tot_stats perl script stops will the following error: ERROR 1045 (28000): Access denied for user 'radius'@'localhost' (using password: NO) Here is a diff which fixes the problem at my system: --- tot_stats 2005-04-06 05:04:

Bug#333742: freeradius-dialupadmin: Missing " on post inputs

2005-10-13 Thread Arve Seljebu
Package: freeradius-dialupadmin Version: 1.0.2-4 Severity: normal Error in HTML syntax for groups/usernames with space. Adding " fixes the problem. Here are the diffs: --- group_admin.php32003-02-01 17:33:26.0 +0100 +++ /usr/share/freeradius-dialupadmin/htdocs/group_admin.php3 200

Bug#333739: freeradius-dialupadmin: Creating group without user(s) fails

2005-10-13 Thread Arve Seljebu
Package: freeradius-dialupadmin Version: 1.0.2-4 Severity: normal Creating group without user(s) in it fails. I don't remember if a row in SQL is added or not, but these to diffs fixes it: --- usr/share/freeradius-dialupadmin/lib/sql/create_group.php3 2004-04-18 16:28:14.0 +0200 +++

Bug#333709: freeradius-dialupadmin: Error in SQL-syntax for badusers page

2005-10-13 Thread Arve Seljebu
Package: freeradius-dialupadmin Version: 1.0.2-4 Severity: normal In badusers.php3 fieldnames are written with both high and low characters. The SQL query fails on my system. Lowering the characters fixes the problem. Diff: --- badusers.php3 2004-04-06 21:37:48.0 +0200 +++ /usr/

Bug#333704: freeradius-dialupadmin: README.Debian should recomend turning register_globals in PHP

2005-10-13 Thread Arve Seljebu
Package: freeradius-dialupadmin Version: 1.0.2-4 Severity: normal Since freeradius-dialupadmin is developed on php3, it uses global variables instead of $_GET and similar. /usr/share/doc/freeradius-dialupadmin/README.Debian should contain an advice about this. -- System Information: Debian R