[web2py] Re: Using a recursive select but encountered a broken reference

2013-04-04 Thread Tamas
Hello Marin, sorry for the late reply. I don't have your e-mail (this list doesn't show e-mails), but I am also not sure I can provide a lot more extra info on this. Did you manage to look into it? Did you find anything? Thanks! Tamas On Friday, March 8, 2013 4:00:24 PM UTC+1, Marin Pranjić

[web2py] Re: Using a recursive select but encountered a broken reference

2013-03-08 Thread Tamas
Hello, I've been having this exact same problem for a long, long time. I would also be interested in a solution, but I doubt there will be one. I think it might be a design issue with Web2py. Tamas On Saturday, March 2, 2013 9:48:38 PM UTC+1, Marin Pranjić wrote: It seems that the problem

[web2py] Re: Using a recursive select but encountered a broken reference

2013-03-08 Thread Tamas
On Friday, March 8, 2013 11:57:39 AM UTC+1, Niphlod wrote: On Friday, March 8, 2013 11:06:00 AM UTC+1, Tamas wrote: Hello, I've been having this exact same problem for a long, long time. I would also be interested in a solution, but I doubt there will be one. I think it might

[web2py] Re: Using a recursive select but encountered a broken reference

2013-03-08 Thread Tamas
On Friday, March 8, 2013 3:16:25 PM UTC+1, Marin Pranjić wrote: True, but... Apache is not raising errors, web2py is. The error message is strange. At least we could have a nicer error if this can't be fixed. However in my example, both instances work until i try to log in. I can use the

[web2py] Re: Can't connect to MySQL server on 'localhost'

2011-03-15 Thread Tamas
Hi Miguel, I had a similar problem on ubuntu linux recently and the solution was to enter the port number (which is usually 3306) in connect string. Try: mysql://username:password@localhost:port/test Cheers Tamas On Mar 16, 2:08 am, Miguel miguel.miran...@gmail.com wrote: Hello to all, I

[web2py] web2py console doesn't show activity

2011-03-04 Thread Tamas
now? Thanks Tamas

[web2py] Re: routes.py SUCKS [or not]

2010-02-01 Thread Tamas
: This route alone routes_in=[ ('/w2p/', '/myapp/default/index')] should map that url into /myapp/default/index. does it work? On Jan 29, 12:01 pm, Tamas tma...@gmail.com wrote: The URL ishttp://example.com/w2p/theapp's name is myapp apparently. On Jan 29, 6:53 pm, mdipierro mdipie

[web2py] routes.py SUCKS

2010-01-29 Thread Tamas
Hello, I would like to tackle the simple task of running web2py on a folder of the website, say http://example.org/w2p/ So that an application will be like http://example.org/w2p/example/default/index Setting up the WSGI handler is easy, however routes.py gives me a hard time. I tried a bunch

[web2py] Re: routes.py SUCKS

2010-01-29 Thread Tamas
? On Jan 29, 6:35 pm, mdipierro mdipie...@cs.depaul.edu wrote: routes_in=[('/w2p/$anything','/$anything')] routes_out=[('/$anything','/w2p/$anything')] On Jan 29, 11:17 am, Tamas tma...@gmail.com wrote: Hello, I would like to tackle the simple task of running web2py on a folder

[web2py] Re: routes.py SUCKS [or not]

2010-01-29 Thread Tamas
/?','/youappname'),('/w2p/$anything','/$anything')] routes_out=[('/$anything','/w2p/$anything')] On Jan 29, 11:41 am, Tamas tma...@gmail.com wrote: Thanks, based on your suggestion this works: routes_in=[('/w2p/(?Pa.*)$','/\ga')] routes_out=[('/(?Pa.*)$','/w2p/\ga')] However, I still have

[web2py] Re: routes.py SUCKS [or not]

2010-01-29 Thread Tamas
The URL is http://example.com/w2p/ the app's name is myapp apparently. On Jan 29, 6:53 pm, mdipierro mdipie...@cs.depaul.edu wrote: what is the URL you see in your browser when you get the error? what is your app name? On Jan 29, 11:50 am, Tamas tma...@gmail.com wrote: Hi, I tried

[web2py:26488] Re: Preventing escaping of HTML coming from the database

2009-07-14 Thread Tamas
Thank you, it worked. I don't know how I didn't try this combination... Thanks! On Jul 13, 3:51 pm, mdipierro mdipie...@cs.depaul.edu wrote: {{=XML (variations[x].content)}} should do what you want. On Jul 13, 7:42 am, Tamas tma...@gmail.com wrote: Hello, I'm not sure if I'm doing

[web2py:26407] Preventing escaping of HTML coming from the database

2009-07-13 Thread Tamas
object in the controller, etc.), but nothing worked. How can I output straight HTML from the database to the view? Looking forward to any help. Thanks! Tamas --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups web2py Web

[web2py:23101] Re: Upload progress

2009-06-02 Thread Tamas
On Jun 2, 4:22 am, Mark Larsen larsen...@gmail.com wrote: I think you are right Also, i've had trouble in the past with CherryPy blocking AJAX calls when another thread to eating 100%.  Apache or Lighttpd would not have this limitation. I think this is not CherryPy's limitation, but

[web2py:23034] Upload progress

2009-06-01 Thread Tamas
Hello, while searching for a solution to do a progress bar for uploads, I found this: http://t.wits.sg/2008/06/25/howto-php-and-jquery-upload-progress-bar/ Unfortunately this uses a PHP Pecl-specific function (uploadprogress_get_info). I was wondering if there is an equivalent function

[web2py:23041] Re: Upload progress

2009-06-01 Thread Tamas
is - 1) web2py doesn't support it right now (and I guess there is no easy way to add it) 2) it is anyways wrong to ask server about how much _browser_ uploaded. Browser knows that so ask him (but not me - I do not know how to do it). On Monday 01 June 2009 19:32:50 Tamas wrote: Hello, while

[web2py:16507] Re: cherrypy multiple threads?

2009-02-18 Thread Tamas
(session._unlock()) but there is really no need to and your app may become unpredictable. Massimo On Feb 18, 8:34 am, Tamas tma...@gmail.com wrote: Hi, in my web2py application there's a function that can take a long time to finish. Now, I want to implement some kind of a monitoring

[web2py:15508] More info in errors

2009-01-27 Thread Tamas
Hello, I'm using web2py and find it very nice. However, I would like to request a feature: it would be very useful if the tickets that are generated when an error happens would not only have the call stack and the exception that occured, but also the request.vars parameters (or even the whole