Re: [web2py] Mapping URLS in routes.py

2011-08-31 Thread Andrew Evans
Actually I figured it out in my routes.py I had set the domain to kidify.org which was directing it if I went to http://kidify.org but not if I typed http://www.kidify,org after adding a second entry so www. was entered it made it work flawlessly :D *cheers On Wed, Aug 31, 2011 at 1:55 PM, Jona

Re: [web2py] Mapping URLS in routes.py

2011-08-31 Thread Jonathan Lundell
On Aug 31, 2011, at 1:50 PM, Andrew Evans wrote: > Hey well for some reason its working now *confused Keep in mind that you need to restart web2py (or at least reload the router configuration) for changes to take effect. That can be confusing, too. > > Anyway I won't complain ty for the advice

Re: [web2py] Mapping URLS in routes.py

2011-08-31 Thread Andrew Evans
Hey well for some reason its working now *confused Anyway I won't complain ty for the advice This is a great forum :-) On Wed, Aug 31, 2011 at 1:36 PM, Jonathan Lundell wrote: > On Aug 31, 2011, at 12:06 PM, Andrew Evans wrote: > > Hello I have the following in my routes.py file but its not map

Re: [web2py] Mapping URLS in routes.py

2011-08-31 Thread Jonathan Lundell
On Aug 31, 2011, at 12:06 PM, Andrew Evans wrote: > Hello I have the following in my routes.py file but its not mapping the > second domain to the web2py project any ideas whats up? > > routers = dict( > > # base router > BASE = dict( > default_application = 'cheer10s', >

[web2py] Mapping URLS in routes.py

2011-08-31 Thread Andrew Evans
Hello I have the following in my routes.py file but its not mapping the second domain to the web2py project any ideas whats up? routers = dict( # base router BASE = dict( default_application = 'cheer10s', domains = { 'cheer10s.com' : 'cheer10s',