Re: [web2py] Re: Open Sourced dating website

2017-02-26 Thread Jaimee S
Yea, dude. There definitely aren't ‎many new ideas under the sun so its always best to find one and improve it a little.

Re: [web2py] Re: make your app name show first

2017-01-02 Thread Jaimee S
I am interested in using the routes.py method. Do I create the file inside of init or do I create it inside of the actual web2py application?

[web2py] Re: Push Notifications

2016-11-03 Thread Jaimee S
Thanks for such a thorough response, Anthony! Long polling seems to be the way to go for my website. I've been reading up on the tornado web socket all day. I'm nearing 100 users on my website and i believe that speed will be a problem eventually. I'm deployed to python anywhere like you

[web2py] Re: Push Notifications

2016-11-02 Thread Jaimee S
2, 2016 at 6:52:05 PM UTC-5, Dave S wrote: > > > > On Wednesday, November 2, 2016 at 3:32:54 PM UTC-7, Jaimee S wrote: >> >> Hello, >> >> My website allows users to send messages to one another; however, the >> only way to see their new message

[web2py] Push Notifications

2016-11-02 Thread Jaimee S
Hello, My website allows users to send messages to one another; however, the only way to see their new messages is to refresh the page. Is there any way to notify the user via any method? Thanks for your time -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) -

[web2py] Re: https and stripe

2016-10-26 Thread Jaimee S
OK, that warning would definitely cost me customers. I'll get right on that ssl right away. Thanks for the big tips! -- 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

[web2py] Re: https and stripe

2016-10-26 Thread Jaimee S
interesting, so what you're saying is that once i deploy to python anywhere ill no longer have any problems with setting up Nginx. Great! Will the payment part of my website still be accessible, just not trusted, without an ssl certificate? On Wednesday, October 26, 2016 at 1:56:04 AM UTC-5,

[web2py] Re: https and stripe

2016-10-25 Thread Jaimee S
Thanks for the tips! That leads me to more questions I found this on web2py from your link: ''' All these steps are performed automatically by the provided scripts: 1 2 scripts/setup-web2py-nginx-uwsgi-on-centos.sh scripts/setup-web2py-nginx-uwsgi-ubuntu.sh''' Does this mean that once I

[web2py] https and stripe

2016-10-25 Thread Jaimee S
Recently I've been working on integrating stripe. I've been unable do to the fact that it requires an https connection. I've looked into obtaining one, but I'm not exactly sure how to. Does web2py not offer ssl support? -- Resources: - http://web2py.com - http://web2py.com/book

[web2py] Re: Stripe Info

2016-10-23 Thread Jaimee S
Thanks for the great responses guys. Could you provide a bit of pseudo code relating to adding the users payment amount to the table. I'm not sure about a few things. For instance, what if they click the buy button then presses back once the widget fires -- Resources: - http://web2py.com -

[web2py] Stripe Info

2016-10-23 Thread Jaimee S
Hi, I've read through the stripe documents and i had a few questions. I see how it's possible to integrate stripe into web2py, but i don't see how you can have an open amount which would allow the user to pay however much they choose. For instance, i would like the users to pay whatever

[web2py] Re: temporary storage

2016-10-20 Thread Jaimee S
Yes, that's along the lines of what I'm looking for; however, I'll need it to be in the database due to the fact that I'm going to loop through that list of requests with a for-loop and call a function on each one. The function adds that value to a field in the db.when I tried to require it in

[web2py] Re: temporary storage

2016-10-20 Thread Jaimee S
That is exactly the piece of code I needed! I'll let you know how it goes when I try it out. Is there any way to limit the number of vars entered? -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) -

[web2py] Re: temporary storage

2016-10-20 Thread Jaimee S
Thanks! That fixed an error. However the big problem is capturing multiple args and storing them in a list so I can access them with a for loop. Is this possible? -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) -

[web2py] temporary storage

2016-10-20 Thread Jaimee S
Also, I plan on emptying the list after I cycle through by the way -- 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

[web2py] temporary storage

2016-10-20 Thread Jaimee S
Hello all, I have a list of users on my page. I'm trying to click one user and add that user to a list. After that, I'm trying to loop though each and display their username in html. I can't seem to get the code one hundred percent right. Any help would be appreciated! Here is my code: def

[web2py] Re: Display uploaded file

2016-10-18 Thread Jaimee S
The css file was not in 'css/style.css' It was in 'style.css'. That fixed the problem and now my flexbox works too. Again, many thanks! -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) -

[web2py] Re: Display uploaded file

2016-10-18 Thread Jaimee S
roger that i'll try all that and let you know what the problem was when i find it On Saturday, October 15, 2016 at 2:20:41 AM UTC-5, Jaimee S wrote: > > Hello all, > > I've been trying relentlessly to display a photo that is connected to a > user. I've tried the download func

[web2py] Re: Display uploaded file

2016-10-18 Thread Jaimee S
Sweet, noted. I'm on my laptop now trying the jsfiddle code. Nothing is happening. I suspect it may be the link I created. What do you think? Link in html: I created a static named style.css an it appears at the bottom of the static file. Css: .container{ display:flex;

[web2py] Re: Display uploaded file

2016-10-18 Thread Jaimee S
I didn't figure exactly what I wanted, but I just added a require in the model that limits the width and height -- 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

[web2py] Re: Display uploaded file

2016-10-18 Thread Jaimee S
Your code worked! Thanks a lot. How do I make the image smaller? -- 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

[web2py] Re: Display uploaded file

2016-10-16 Thread Jaimee S
You're a genius, man. Thanks. Is there any way to bypass the download function? It slows down my site if I'm downloading each picture of each user BTW, I appreciate your efforts! I see you on every board. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) -

[web2py] Re: Display uploaded file

2016-10-15 Thread Jaimee S
Thanks for replying, I should probably clarify more. The dots are just my shorthand way of indicating that the code is the same in that spot and the only thing that changed was what I typed out the following time. The b in the for loop is just a variable that indicates the same value as your

[web2py] Display uploaded file

2016-10-15 Thread Jaimee S
Hello all, I've been trying relentlessly to display a photo that is connected to a user. I've tried the download function a thousand ways and am slowly running out of Google search terms. Here is what I've tried: auth.settings.extra_fields[auth.settings.table_user_name]=

[web2py] Re: accessing auth_user username

2016-10-14 Thread Jaimee S
Oh I see, I misunderstood how to access Auth. You're right, I'll need to read more of the documentation. BTW your answer worked, thanks! -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) -

[web2py] accessing auth_user username

2016-10-13 Thread Jaimee S
Hello All, Im new to web2py and I can't seem to figure out how to access the usernames of the registered users. I added username to the default login and it renders just fine. In my controller I've tried various methods such as: def xx(): item =