Did you also change:
init = dict(
to
social = dict(
Please show the complete contents of your routes.py file.
Anthony
On Saturday, June 23, 2012 3:03:54 AM UTC-4, Alec Taylor wrote:
>
> Thanks Annet, but that also didn't work for me. The only modification
> I made was removing the basicRegister element and replaced default
> application with "social"
>
> On Sat, Jun 23, 2012 at 3:10 PM, Annet <[email protected]> wrote:
> > Hi Alec,
> >
> > I had a routes related problem a few weeks ago. Jonathan and Anthony
> helped
> > me solve it. The routes.py file that works i.e. remove default from the
> url
> > reads like:
> >
> >
> > # -*- coding: utf-8 -*-
> >
> > routers = dict(
> > BASE = dict(
> > default_application = 'init',
> > applications = 'ALL',
> > default_controller = 'default',
> > controllers = 'DEFAULT',
> > default_function = 'index',
> > ),
> > init = dict(
> > default_function = 'index',
> > functions = ['index','user','register','basicRegister',
> > 'download','call','data','error']
> > )
> > )
> >
> >
> > Kind regards,
> >
> > Annet
> >
> > --
>
--