[web2py] Re: Code changes on live server not showing up

2016-06-22 Thread Marty Jones
I see. Are there any web2py-specific caching settings I should check? On Wednesday, June 22, 2016 at 11:18:50 AM UTC-4, Anthony wrote: > > On Wednesday, June 22, 2016 at 10:39:23 AM UTC-4, Marty Jones wrote: >> >> No. I was under the impression it doesn'

[web2py] Re: Code changes on live server not showing up

2016-06-22 Thread Marty Jones
No. I was under the impression it doesn't need to be. Does it? On Tuesday, June 21, 2016 at 10:46:33 PM UTC-4, Anthony wrote: > > Is your application compiled? -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) -

[web2py] Code changes on live server not showing up

2016-06-21 Thread Marty Jones
I made a few changes on a DigitalOcean server running Web2py + uwsgi + nginx. The changes were to routes.py and to a couple of views. None of these are showing up on the webpage. I tried restarting uwsgi and nginx and even rebooting the VPS altogether, but still the changes don't show up. I

Re: [web2py] Re: A bunch of strange database errors

2016-06-16 Thread Marty Jones
lcome as template for new app... >> >> On Thu, Jun 16, 2016 at 12:36 PM, Marty Jones <murtin...@gmail.com >> > wrote: >> >>> The reason I suspect a non-application-specific issue is that creating a >>> new simple app from the web2py admin console r

Re: [web2py] Re: A bunch of strange database errors

2016-06-16 Thread Marty Jones
toring of pyDAL, I don't recall it the refactored > pyDAL was present in 2.14.5 > > > > On Thu, Jun 16, 2016 at 12:22 PM, Marty Jones <murtin...@gmail.com > > wrote: > >> Done - no change. >> >> Is it possible that the issue is SQLite speci

Re: [web2py] Re: A bunch of strange database errors

2016-06-16 Thread Marty Jones
On Thu, Jun 16, 2016 at 12:05 PM, Marty Jones <murtin...@gmail.com > > wrote: > >> Controller logic is below. Error 1 is occuring under the "dashboard" >> function. Errors 2/3 under the user function. >> >> # -*- coding: utf-8 -*- >>

[web2py] Re: A bunch of strange database errors

2016-06-16 Thread Marty Jones
pp]/default/download/[filename] """ return response.download(request, db) def call(): """ exposes services. for example: http:///[app]/default/call/jsonrpc decorate with @services.jsonrpc the functions to expose supports xml, j

[web2py] Re: A bunch of strange database errors

2016-06-16 Thread Marty Jones
The user is logged in when the error occurs, yes. And yes to the second question as well. I'm logged in as a regular user and am attempting to logout. On Thursday, June 16, 2016 at 11:51:09 AM UTC-4, Anthony wrote: > > *Error 1:* >> >> Traceback (most recent call last): >> File

Re: [web2py] A bunch of strange database errors

2016-06-16 Thread Marty Jones
t about ~200+ lines would > be informative of what going on... > > Richard > > On Thu, Jun 16, 2016 at 11:31 AM, Marty Jones <murtin...@gmail.com > > wrote: > >> See version info below: >> >> 2.14.5-stable+timestamp.2016.04.13.22.22.13 >> (Running

Re: [web2py] A bunch of strange database errors

2016-06-16 Thread Marty Jones
See version info below: 2.14.5-stable+timestamp.2016.04.13.22.22.13 (Running on Unknown, Python 2.7.6) On Thursday, June 16, 2016 at 9:59:58 AM UTC-4, Richard wrote: > > How did you upgrade ? Which version of web2py (2.14.6)? > > Richard > > On Thu, Jun 16, 2016 at 9:36 AM, M

[web2py] A bunch of strange database errors

2016-06-16 Thread Marty Jones
I uploaded a local application to my DigitalOcean droplet and have been having a nightmare of a time with the databases. I get this variety of errors on various pages: *Error 1:* Traceback (most recent call last): File "/home/murtyjones/app/gluon/restricted.py", line 227, in restricted

[web2py] Are my permissions okay?

2016-06-16 Thread Marty Jones
I have ownership of my web2py folder set to www-data group and for permissions I've used "sudo chmod 777 - R "~/path/to/web2py". Is this correct? Seems to be the only way to write to databases, etc. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) -

[web2py] Re: OperationalError: no such column

2016-06-13 Thread Marty Jones
Resolved it - the line that was triggering the error: company = db.auth_user.company) should have been: company = auth.user.company) :P On Monday, June 13, 2016 at 9:03:39 PM UTC-4, Dave S wrote: > > > > On Monday, June 13, 2016 at 5:49:35 PM UTC-7, Marty Jones wrote: >>

[web2py] Re: OperationalError: no such column

2016-06-13 Thread Marty Jones
On Monday, June 13, 2016 at 7:53:45 PM UTC-4, Dave S wrote: > > > > On Monday, June 13, 2016 at 1:57:38 PM UTC-7, Marty Jones wrote: >> >> Hi - >> >> I created a custom auth_user table with a new field ('company') and am >> having trouble access

[web2py] OperationalError: no such column

2016-06-13 Thread Marty Jones
Hi - I created a custom auth_user table with a new field ('company') and am having trouble accessing it in my controller: db.py db.define_table( auth.settings.table_user_name, Field('first_name', length=128, default=''), Field('last_name',

[web2py] Re: Installing custom modules on a Web2py-friendly VPS (e.g. DigitalOcean, Linode)?

2016-05-08 Thread Marty Jones
ith PIP install module_name. > > On Saturday, May 7, 2016 at 11:50:12 AM UTC-4, Marty Jones wrote: >> >> I know this isn't a Web2py specific question but hope some of you will >> have had experience with this. >> >> I have a Web2py app that relies on a number of 3r

[web2py] Installing custom modules on a Web2py-friendly VPS (e.g. DigitalOcean, Linode)?

2016-05-07 Thread Marty Jones
I know this isn't a Web2py specific question but hope some of you will have had experience with this. I have a Web2py app that relies on a number of 3rd party Python modules (Selenium, BeautifulSoup, PyVirtualDisplay, and various dependencies). Before I pay for a VPS, I want to be sure I

[web2py] Re: Can't access scheduler_task table ['DAL' object has no attribute 'scheduler_task']

2016-05-01 Thread Marty Jones
how would I import the scheduler into a module to do that? On Sunday, May 1, 2016 at 12:00:44 PM UTC-4, Niphlod wrote: > > why don't you use queue_task() ? > > On Friday, April 29, 2016 at 9:17:37 PM UTC+2, Marty Jones wrote: >> >> I seem to have resolved it by switching

[web2py] Re: Can't access scheduler_task table ['DAL' object has no attribute 'scheduler_task']

2016-04-29 Thread Marty Jones
I seem to have resolved it by switching "db = current.db" to "db = current.globalenv['db']" On Friday, April 29, 2016 at 12:05:34 PM UTC-4, Marty Jones wrote: > > I'm defining some functions in the modules folder that need to access and > insert rows into the db

[web2py] Can't access scheduler_task table ['DAL' object has no attribute 'scheduler_task']

2016-04-29 Thread Marty Jones
I'm defining some functions in the modules folder that need to access and insert rows into the db. in the controller, I define "current.db = db" then in the module I import the db as seen below. I define the function below and attempt to import it and queue it up using Scheduler, but receive

[web2py] Deploying with a lot of modules

2016-03-07 Thread Marty Jones
I'm working on developing a web2py application that uses a scraper. In order to accomplish what I need I'm using a lot of modules... Selenium, BeautifulSoup, possibly AutoIT, and all the dependencies of those modules... How do I begin to think about including those during deployment? I'm

[web2py] [Scheduler] Scraping javascript pages

2016-03-01 Thread Marty Jones
I'm working to create a web2py app that can scrape pages containing a decent amount of javascript data, as a background process. I'm unsure what module is best to use. I was considering Dryscrape but it seems to have a lot of dependencies that wouldn't translate to deployment well (eg Qt). Can

[web2py] Re: Sending email through gmail account: no SSL support

2016-03-01 Thread Marty Jones
That works fine as well. On Tuesday, March 1, 2016 at 3:32:43 AM UTC-6, Niphlod wrote: > > what if you just > > import ssl > > ? > > which environment are you in (os details) ? > > On Tuesday, March 1, 2016 at 12:36:16 AM UTC+1, Marty Jones wrote: >> >>

[web2py] Re: Sending email through gmail account: no SSL support

2016-02-29 Thread Marty Jones
, February 29, 2016 at 10:57:58 PM UTC+1, Marty Jones wrote: >> >> 2.7.11 >> >> On Monday, February 29, 2016 at 2:20:00 PM UTC-6, Niphlod wrote: >>> >>> what python are you using ? >>> >>> On Monday, February 29, 2016 at 4:39:45 PM

[web2py] Re: Sending email through gmail account: no SSL support

2016-02-29 Thread Marty Jones
2.7.11 On Monday, February 29, 2016 at 2:20:00 PM UTC-6, Niphlod wrote: > > what python are you using ? > > On Monday, February 29, 2016 at 4:39:45 PM UTC+1, Marty Jones wrote: >> >> I'm trying to send an email using web2py's auth mailer. I've set an >> application

[web2py] Sending email through gmail account: no SSL support

2016-02-29 Thread Marty Jones
I'm trying to send an email using web2py's auth mailer. I've set an application specific password and am using that and my gmail info in the code below: mail = auth.settings.mailer mail.settings.server = 'smtp.gmail.com:587' mail.settings.sender = 'em...@gmail.com' mail.settings.login =

[web2py] Re: Basic syntax question

2016-02-26 Thread Marty Jones
book (especially the part about views ( > http://web2py.com/books/default/chapter/29/05/the-views)) > > On Friday, February 26, 2016 at 7:49:07 PM UTC+1, Marty Jones wrote: >> >> I'm just getting started with web2py and I'm struggling to figure out how >&g

[web2py] Basic syntax question

2016-02-26 Thread Marty Jones
I'm just getting started with web2py and I'm struggling to figure out how to call variables passed from the controller to the view, without using the {{=variable}} method. For example, I have the following code in my controller: def manage(): list = [] for row in

[web2py] Want to build a web scraper that runs as web2py app. Where to start?

2016-02-26 Thread Marty Jones
I have some familiarity with scraping but only from my local machine, not from a server. I'd like to set up a basic scraping app as a web2py app that I can eventually run on a server. Anybody seen any tutorials for anything along these lines or know of a good module for doing this? --