Skip to main content

CUPS: 426 - Upgrade Required

·127 words·1 min· ·
General Everything Features Linux Ubuntu
Ariejan de Vroom
Author
Ariejan de Vroom
Jack of all Trades, Professional Software Craftsman

As I was installing my printer on my Ubuntu 6.06 Dapper LTS server with CUPS I noticed the following error:

426 Upgrade Required

After some research I came to the conclusion that CUPS, by default, tries to use SSL whenever possible. So, with this 426 error, you are redirected to the SSL domain. Chances are, you haven’t configured SSL properly, if at all.

In my case, I didn’t want to configure SSL. To get rid of this problem, the key lies in editing your configuration files ( /etc/cups/cupsd.conf ) and adding the following line:

DefaultEncryption Never

There are several options, Never, IfRequired and Required. By setting this to Never, SSL will never be enforced. Just restart your CUPS server with

/etc/init.d/cupsys restart

and you’re good to go.

Related

WordpressMu: Don’t allow new blogs
·213 words·1 min
General Everything Features WordPressMu
Migrate SQLite3 to MySQL easily
·275 words·2 mins
General Everything RubyOnRails Databases Features
Tagging in ajax_scaffold
·468 words·3 mins
General Everything Web Development RubyOnRails Features