web2py doesn't need pysqlite2 to work: of course you'd need some other database backend available if your app uses a database. However, the standard 2.7 python distribution ships with sqlite3 module, that is a backport of pysqlite2. This means that if anyone wants the latest features available for sqlite in python, they should install pysqlite2. If not, the standard python distribution works fine. That message is coming from you trying to access the admin app over http and not being on localhost: for security reasons admin is accessible on http only on localhost and on httpS if you're connecting to web2py from another machine.
On Monday, June 3, 2013 9:36:14 PM UTC+2, Colin Brace wrote: > > Hi all, > > In an earlier thread here, it was indicated that web2py requires py-sqlite > to run under FreeBSD. So I installed py27-sqlite3 alongside python27-2.7.5 > on my FreeBS 9.0 server. > > I can get to the web2py welcome page. However, when I try to log into the > administrative interface, I see the "Admin is disabled because insecure > channel" error. > > What am I still missing here? > > Thanks. > -- --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

