[web2py] Re: restful services call

2022-11-24 Thread jonatha...@whatho.net
It's up for me, as is the book 
at http://web2py.com/books/default/chapter/29/10/services#Restful-Web-Services 
which is where you can read about restful services. Hope I haven't 
misunderstood your question.

On Thursday, 24 November 2022 at 07:56:36 UTC T.R.Rajkumar wrote:

> Is web2py.com down, I am not able to access. 
> Also, in the book services is not responding. 
> How to call restful services in web2py?
> Thank you.
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/17eb08a3-34bb-43ff-99a0-ee544a538a11n%40googlegroups.com.


[web2py] Re: gmail smtp and password retrieval

2022-08-18 Thread jonatha...@whatho.net
I'm using web2py 2.22.3. My only email settings in db.py are are:

## configure email
mail=auth.settings.mailer
mail.settings.server = 'smtp.gmail.com:587'
mail.settings.sender = '@gmail.com'
mail.settings.login = '@gmail.com:'

The length 16 password is the app password generated by gmail. Emails work, 
used mainly by auth to send
reset-password links.

Here's a little python snippet to test your userid / password work with 
gmail.

import imaplib
import sys

def checkGmail(userid, password):
'''
get unread email count and spam count from gmail
'''
try:
session = imaplib.IMAP4_SSL('imap.gmail.com')
session.login(userid, password)
session.select()
unseen_inbox = len(session.search(None, 'UNSEEN')[1][0].split())
rc = session.select('[Gmail]/Spam')
if rc[0] == 'OK':
spam = int(rc[1][0])
else:
spam = '0'
return(True, unseen_inbox, spam)
except:
print(("Unexpected error:", sys.exc_info()))
return (False,)

if __name__ == '__main__':
print (checkGmail('**@gmail.com', ''))

When I run this with the userid and password set in my db.py file I 
get (True, 30, 5), demonstrating that I can log in to gmail with the userid 
and app password. Does it work for you?




On Thursday, 18 August 2022 at 03:07:40 UTC+1 lucas wrote:

> i am using web2py 2.22.5 using the wsgihandler.py handler and nginx under 
> centos 8 stream all current and updated and rebooted.  i don't understand 
> all of the stuff from massimo
>
> On Wednesday, August 17, 2022 at 8:54:22 PM UTC-4 lucas wrote:
>
>> i'm wondering.  do i have to retrieve or generate the 16 digit password 
>> from the app itself.  cuz i don't know how to do that since it is purely a 
>> linux console only interface.
>>
>> On Wednesday, August 17, 2022 at 12:18:16 PM UTC-4 lucas wrote:
>>
>>> nope, and i regenerated a new password just to be sure and restarted the 
>>> server daemons also.  just in case appconfig is only loaded once.
>>>
>>>
>>> On Wednesday, August 17, 2022 at 12:15:52 PM UTC-4 Clemens wrote:
>>>
 Hm, one last guess: ssl false, tls true and port 587.

 On Wednesday, August 17, 2022 at 6:12:50 PM UTC+2 lucas wrote:

> nope, that didn't work either.  uhm.
>
> On Wednesday, August 17, 2022 at 12:08:12 PM UTC-4 Clemens wrote:
>
>> Hmm, should work, since it's the right port for ssl. Maybe setting 
>> tls to false could make it work, since the tls port is 587.
>>
>> Have a try! Hope it helps!
>>
>> Clemens
>>
>> On Wednesday, August 17, 2022 at 5:57:56 PM UTC+2 lucas wrote:
>>
>>> oh, so the latter is still not sending the Lost Password.
>>>
>>> On Wednesday, August 17, 2022 at 11:54:38 AM UTC-4 lucas wrote:
>>>
 ok, i turned on 2-step verification, generated 1 password for "App 
 passwords" that gave me a 16 character string which i copied into the 
 password location under private/appconfig.ini:

 server = smtp.gmail.com:465
 sender = profes...@gmail.com
 login  = 'profes...@gmail.com:eakwlqljrsdeyj16'
 tls= true
 ssl= true

 where i changed the login string so i didn't give away my 
 security.  so what do you think?
 lucas

 On Wednesday, August 17, 2022 at 11:34:58 AM UTC-4 Clemens wrote:

> Generate an app password, as follows:
> https://support.google.com/mail/answer/185833?hl=en
>
> This should solve it, hopefully.
>
> Regards
> Clemens
>
> On Wednesday, August 17, 2022 at 5:20:49 PM UTC+2 lucas wrote:
>
>> hey one and all,
>>
>> on May 5th, 2022, gmail imposed the 2 step verification on its 
>> smtp service.  how do we configure web2py to still use our gmail 
>> accounts 
>> to send smtp for password retrieval.
>>
>> thank you in advance, lucas
>>
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/6fea335e-a601-4010-af2e-d30f41645ce9n%40googlegroups.com.


Re: [web2py] Use of .npz files vs DB

2022-04-30 Thread jonatha...@whatho.net
I'm probably wrong, but isn't this a numpy question?

On Saturday, 30 April 2022 at 11:12:39 UTC+1 mauri...@gmail.com wrote:

> I use it like this:
> import numpy as np
> data = np.load(os.path.join(current.request.folder, 'modules', 
> 'test_me.npz'), allow_pickle=True )
> moa = data['x']
> arr = np.asarray(moa)
> for item in arr:
> ..
>
>
> This I find it to be slow
>
> On Sat, Apr 30, 2022 at 12:06 PM Maurice Waka  wrote:
>
>> Anyone with experience using large .npz files?
>> I find it to slow the app when calling out functions that access the 
>> (lists inside) npz files.
>> Would storing the lists in the DB be faster?
>> Regards
>>
>> -- 
>> Resources:
>> - http://web2py.com
>> - http://web2py.com/book (Documentation)
>> - http://github.com/web2py/web2py (Source code)
>> - https://code.google.com/p/web2py/issues/list (Report Issues)
>> --- 
>> 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 web2py+un...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/web2py/f817bf60-7d7b-49a3-bc47-0936b4670d7cn%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/fa4fb44b-3591-4bad-b880-7e73858b002cn%40googlegroups.com.


[web2py] Re: left outer join

2022-02-20 Thread jonatha...@whatho.net
http://www.web2py.com/books/default/chapter/29/06/the-database-abstraction-layer#Left-outer-join

On Saturday, 19 February 2022 at 02:48:35 UTC alex wrote:

> Hi, 
>
> How can I reproduce this LEFT OUTER JOIN in PyDAL ?
>
>
> SELECT name
> FROM doc
>
> LEFT JOIN (
>
> SELECT name
> FROM X 
> INNER JOIN ...
> WHERE ...
> ) T ON ( T.name = name)
>
> WHERE
> T.name IS NULL
>
>
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/3e47a5ea-6048-4ea6-a376-b150083a7c31n%40googlegroups.com.


[web2py] Re: Upgrading to a higher version of web2py through the admin interface

2022-01-18 Thread jonatha...@whatho.net
"My app is already online & being utilised so i dont wanna risk anything 
thats go mess it up."

Then test it very carefully in a test environment before you do it to your 
live system, and have a backup of the live environment before you start, 
that you know works, so that when it all goes pear-shaped, you have a 
method to go back to where you were.

On Wednesday, 12 January 2022 at 08:30:31 UTC mostwanted wrote:

> Hi guys, is it safe to upgrade my version of web2py through the admin 
> interface? Has anyone tried it & did it work?
>
> I have an opp developed in an older version of web2py, some functions are 
> not working on it like *callback=URL()* but in my research it says the 
> functionality works well in newer versions, when I try to upgrade there is 
> a disclaimer that I should do it at my own risk!!!. My app is already 
> online & being utilised so i dont wanna risk anything thats go mess it up.
>
> Regards;[image: Screenshot (81).png]
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/1fd7e51e-5066-4089-9280-7c95c64ed3a8n%40googlegroups.com.


[web2py] Re: How to know if a dialogdiv is the front dialogdiv ?

2021-11-30 Thread jonatha...@whatho.net
Isn't this a jquery question?

On Tuesday, 30 November 2021 at 17:53:36 UTC lapin...@gmail.com wrote:

> Hello all, 
>
> In my project I have a lot of dialogdiv (different sizes, different 
> functions, ) 
> They are independant and are opened at any time
> I would like to know if there is a fast method to know which dialogdiv is 
> in front 
>
>
> *My goal is :*
>
> I have a dialogdiv which is more important than the others. 
> So if my favorite dialogdiv is not in front I close it and reopen it (and 
> it should be in front) 
>
> Thanks  in advance 
>
> Regards
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/6ed25938-7dca-4277-84f3-5a6469cf0a73n%40googlegroups.com.


[web2py] Re: standard html button within a web2py view

2021-04-28 Thread jonatha...@whatho.net
I would have a read of this and the following section in the book. 
http://www.web2py.com/books/default/chapter/29/03/overview#Simple-examples. 
It fairly quickly gets on to ways to include html.

On Tuesday, 27 April 2021 at 23:54:15 UTC+1 james c. wrote:

> Is it possible to use standard html elements, for example a button, in a 
> web2py view. 
>
> I've tried both within the default controller and a separate controller 
> named a_net.py and in both cases the function and views are named payment. 
> In both cases, a link:  {{ =this_link }} is populated with the correct 
> link, but all the html code does not load in the browser. Only, the 
> variables that were returned to the view, and their correct values are 
> displayed. The URL to the view, with the function in default is: 
> "localhost:8000/mpay/default/payment" and with not using default: 
> "localhost:8000/mpay/a_net/payment" 
>
> None of the html code is in the browser, just the list of variables and 
> their values that the function returned to the view. So is it possible to 
> use a standard html element, like a button, and have only that button 
> displayed in a browser?
>
> Thanks in advance for any recommendations, James
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/7ba7ad16-1dae-4a0c-8e21-4dae47b0722dn%40googlegroups.com.


[web2py] Re: anywhere.py rocket admin on port 80 no ssl

2021-04-17 Thread jonatha...@whatho.net
I do it by ssh'ing to the machine where I want to access the interface. In 
my case from my local (Linux) machine I do
`ssh -L 80:127.0.0.1:80 u...@remote.machine.com`. This sets up a tunnel 
from the local m/c to the remote m/c.
Then I access my local machine in the browser by 127.0.0.1:80 and ssh 
transports the request over to port 80 on the remote machine. web2py just 
responds to a request on its port 80.

Google for ssh tunnel.

On Friday, 16 April 2021 at 19:45:42 UTC+1 lucas wrote:

> setting the password is not the problem.  if I try to come in under port 
> 80, http://..., web2py throws "Admin is disabled because insecure channel".
>
> On Friday, April 16, 2021 at 2:22:22 PM UTC-4 Clemens wrote:
>
>> You have just to set the appadmin password manually as described here:
>>
>> http://web2py.com/books/default/chapter/29/13/deployment-recipes?search=save_password#Setting-password
>>
>> On Friday, April 16, 2021 at 2:06:41 PM UTC+2 lucas wrote:
>>
>>> maybe a common question.  how do i allow access to the admin interface 
>>> on regular port 80 and without ssl?  i have web2py running on a little 
>>> local raspberry pi, behind firewalls, and i'm not concerned with security.
>>>
>>> thank you in advance, lucas
>>>
>>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/ad3a6d00-c074-4878-bbe3-02b6900e7aaan%40googlegroups.com.


[web2py] Re: python app in cpanel

2021-04-03 Thread jonatha...@whatho.net
I've never tried to execute it from C panel, but that error looks to me 
like web2py is trying to put up the dialogue requesting a password which 
uses TkInter, which is apparently not installed in your python. You can 
avoid that dialogue when running web2py by using the command "python 
web2py.py -a password", so you could try making your script "web2py.py -a 
password". I'm not sure what the next package will be that web2py can't 
find because it is not installed. Don't know what C panel facility you have 
for adding further packages to your python installation.




On Thursday, 1 April 2021 at 10:24:54 UTC+1 mr.ros...@gmail.com wrote:

> Hello friends. Good time. I want to install the framework from the C panel 
> by installing the Python program on the Apache server. Thank you for your 
> help.
>
> 1 - First I chose to install the Python program.
> 2- Choose  3- Choose python version 3.7.10
> 4- Application Root ---> Web2py
> 5- Application Sturtup file ---> passenger_wsgi.py
> 6- Application Entry point ---> application
> 7- Download web2py package source and unzip in Application Root
> 8- test the server: It works! Python 3.7.10
> 9- Execute python script ---> web2py.py
>
> Errors: 
>
> returncode: 1 stdout: web2py Web Framework Created by Massimo Di Pierro, 
> Copyright 2007-2021 Version 2.21.1-stable+timestamp.2020.11.28.04.10.44 
> Database drivers available: sqlite3, imaplib, pymysql, pyodbc stderr: 
> WARNING:web2py:GUI not available because Tk library is not installed 
> /opt/alt/python37/lib64/python3.7/getpass.py:91: GetPassWarning: Can not 
> control echo on the terminal. passwd = fallback_getpass(prompt, stream) 
> Warning: Password input may be echoed. choose a password:Traceback (most 
> recent call last): File "/opt/alt/python37/lib64/python3.7/getpass.py", 
> line 69, in unix_getpass old = termios.tcgetattr(fd) # a copy to save 
> termios.error: (25, 'Inappropriate ioctl for device') During handling of 
> the above exception, another exception occurred: Traceback (most recent 
> call last): File "web2py.py", line 58, in  gluon.widget.start() 
> File "/home/fourclick/web2py/gluon/widget.py", line 836, in start 
> options.password = getpass.getpass('choose a password:') File 
> "/opt/alt/python37/lib64/python3.7/getpass.py", line 91, in unix_getpass 
> passwd = fallback_getpass(prompt, stream) File 
> "/opt/alt/python37/lib64/python3.7/getpass.py", line 126, in 
> fallback_getpass return _raw_input(prompt, stream) File 
> "/opt/alt/python37/lib64/python3.7/getpass.py", line 148, in _raw_input 
> raise EOFError EOFError
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/f7d7e870-9679-46c5-b8b2-612eb749bfdan%40googlegroups.com.


[web2py] Re: creating records in web2py after migration to postgresql

2021-04-02 Thread jonatha...@whatho.net
OK, can you interact with the postgresql database using the DAL standalone 
as described 
in 
http://www.web2py.com/books/default/chapter/29/06/the-database-abstraction-layer#Using-the-DAL-stand-alone-?
 
Can you insert records via this mechanism? Do you get any error?

Usually when testing in this way I run python [path]/web2py.py -M -S 
appname which loads the models for the app I am concerned with.


On Thursday, 1 April 2021 at 22:01:45 UTC+1 Aydin wrote:

> Yes, the question is I have no log or error to debug for the issue:
> After migration to postregsql and removing the errors, the insert record 
> does not work. It returns no error. The record does not get created.
>
>
> On Thursday, April 1, 2021 at 4:52:08 PM UTC-4 jonatha...@whatho.net 
> wrote:
>
>> Do you have a question, because I an struggling to understand what it is?
>>
>> On Thursday, 1 April 2021 at 14:04:20 UTC+1 Aydin wrote:
>>
>>> I can create records in the interface of the postgresql and they show up 
>>> in the web2py database admin. But the user I created in postgresql cannot 
>>> login to the app. There is no error. 
>>> Using SQLite, I could create records by web2py's database admin. is it 
>>> still possible to create records if you use postgresql or not? Because as I 
>>> said in the frist post, they do not get created. 
>>>
>>> On Thursday, April 1, 2021 at 8:42:25 AM UTC-4 Aydin wrote:
>>>
>>>> I have moved my database from SQlite to postgresql. The problem I have 
>>>> is that when I try to create any table, it does not return any notice and 
>>>> refreshes the page and does not create the record. I have some tables and 
>>>> none of them create a record. I am creating the records using admin page 
>>>> on 
>>>> the website just like I did with SQLite. I read it is the same way with 
>>>> postgresql.
>>>>
>>>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/9db907a7-f092-4caa-b2e6-5c8fb2ead5d6n%40googlegroups.com.


[web2py] Re: creating records in web2py after migration to postgresql

2021-04-01 Thread jonatha...@whatho.net
Do you have a question, because I an struggling to understand what it is?

On Thursday, 1 April 2021 at 14:04:20 UTC+1 Aydin wrote:

> I can create records in the interface of the postgresql and they show up 
> in the web2py database admin. But the user I created in postgresql cannot 
> login to the app. There is no error. 
> Using SQLite, I could create records by web2py's database admin. is it 
> still possible to create records if you use postgresql or not? Because as I 
> said in the frist post, they do not get created. 
>
> On Thursday, April 1, 2021 at 8:42:25 AM UTC-4 Aydin wrote:
>
>> I have moved my database from SQlite to postgresql. The problem I have is 
>> that when I try to create any table, it does not return any notice and 
>> refreshes the page and does not create the record. I have some tables and 
>> none of them create a record. I am creating the records using admin page on 
>> the website just like I did with SQLite. I read it is the same way with 
>> postgresql.
>>
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/7223f5be-86ac-497c-b3e6-31c720e7d6a3n%40googlegroups.com.


[web2py] Re: Hosting my web2py application

2020-10-27 Thread jonatha...@whatho.net
Do you want instructions on how to set up and run a server (Linux, 
Windows?) on your home premises?
Instructions on how to install web2py on such a server?
Instructions on how to provide access to web browsers out on the internet 
(e.g. setting up IP addresses on which the server can be contacted?)

These are big topics which (I would suggest) are outside the scope of this 
group, and might require a fair bit of research. Also there are lots of 
options depending on your requirements. None of it's specially difficult 
but most of it is not specific to web2py.


On Tuesday, 27 October 2020 at 15:44:30 UTC mostwanted wrote:

> How do I setup a private home server to host my web2py application? What 
> do i need & how do i put it together? If anyone has done it before please 
> share the process or direct me to where I can find the information.
>
> Regards;
>
> Mostwanted
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/ca1b4870-e100-4a35-9aee-2c1a49163f30n%40googlegroups.com.


[web2py] Re: In Web2py, how to redirect to another page after user login?

2020-07-11 Thread jonatha...@whatho.net
Why are you writing your own login function? What is wrong with the one in 
Auth (http://web2py.com/books/default/chapter/29/09/access-control#)?

When I have used the Auth facilities, and I want to restrict access to a 
page, I use the decorater @auth.requires_login() before my controller 
function (say index()). When a user tries to visit index, they are routed 
to a login page, after login they are routed to index(), the controller 
they were trying to visit in the first place.

Sorry if you already know all this which is documented in the link above.

On Saturday, 11 July 2020 at 07:44:58 UTC+1 anusha...@gmail.com wrote:

>
> *By default, after a successful login the page directs to "default/index". 
> I want it to redirect to some other page.*
>
> This my controller code "user.py"
>
> def login():
> form=auth.login()
> if form.process().accepted:
> redirect(URL('page_1'))
> return dict(form=form)
>
> This is the view code for "user/login":
>
> 
> 
> 
> Document
> 
> 
> 
>  {{=form.custom.begin}}
>
>
>  class="string" id="auth_user_email" value="" />
>
>  id="auth_user_password" type="password" class="field" value="" />
> 
>  value="{{=T('Login')}}" />
>  formaction='/{{=request.application}}/default/user/register' 
> value="{{=T('Sign Up')}}"/>
> 
>  value="{{=T('Forgot Password')}}" 
> formaction='/{{=request.application}}/default/user/retrieve_password' />
> {{=form.custom.end}}
> 
> 
> 
>
> *The thing is, when the form is getting processed, it is still redirecting to 
> the page "default/index". I don't know where to change this default setting 
> in the application. The code of my controller is not working properly.*
>
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
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 web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/8dc8020d-ac90-4dbe-a5dd-84985bb837a4n%40googlegroups.com.