Is there a way to start a different browser then what ever it picks?
Even deeper, can I simple not have the webbrowser turn on?
--
Jason
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"web2py Web Framework" group.
If I remember, everyone was talking about some new way to translate all
strings in an html document that was created. Making it so you didn't
have to find all your strings and T() them all. Is that correct? If
so, could someone point me to the correct documentation about that?
Also, when we hav
or if a browser should open at all.
If you like, I can make you a fancy shmancie front-end in gtk.
Regards,
Jason Brower
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"web2py Web Framework" group.
I have a form that added items to a list that I have listing on the
right of the form on the same page.
When I add the item it says the item was added successfully, but I don't
see the item until I refresh the page. What would you do?
Regards,
Jason
--~--~-~--~~~---
gt; > Are you talking in the Tk UI?
> >
> > I can add a flag to do enable/disable it.
> >
> > Can you make a fancy-shmancie front-end in Tk instead? Distributing a
> > gtk binary is a problem. What features would you add?
> >
> > Massimo
> >
>
serves the updated html or json data. This is what I usually do
> to populate dynamically selects controls.
>
> carlo
>
> On 16 Mag, 15:54, Jason Brower wrote:
> > I have a form that added items to a list that I have listing on the
> > right of the form on the same page
It would be nice to have integrated pagination, or perhaps some
documentation on how it's done. And both would be a dream. :D
I am sure this has been brought up before, but I want to plug it again
as I really would like this feature in time for my thesis. ;)
Regards,
Jason B
Spam a way, thank you very much!
Regards,
Jason
On Sat, 2009-05-16 at 11:58 -0500, Yarko Tymciurak wrote:
> a new phase of creative spam
>
> Unless someone finds redeemeing aspect to this, we'll remobe and
> ban
>
> Thanks,
> - Yarko
>
> On Sat, May 16, 2009 at 8:14 AM, bratty
> wrot
Cool! thanks,
Jason
On Sat, 2009-05-16 at 10:15 -0700, virhilo wrote:
> maybe look at:
> http://mdp.cti.depaul.edu/AlterEgo/default/show/63
> and
> http://mdp.cti.depaul.edu/AlterEgo/default/show/95
>
> On 16 Maj, 18:39, Jason Brower wrote:
> > It would be nice to ha
I know it was for him, but I like the idea of .w2p.
File managers can have the ability to automatically install and run by
double clicking. File selection can be very nice to and searching
*.w2p.
Regards,
Jason
On Sat, 2009-05-16 at 22:14 +0200, Markus Gritsch wrote:
> On Sat, May 16, 2009 at
Noticed you had a broken link here...
http://mdp.cti.depaul.edu/AlterEgo/default/show/95
the ORM link that goes here...
http://mdp.cti.depaul.edu/examples/default/orm
My part to help out,
Jason
--~--~-~--~~~---~--~~
You received this message because you are subsc
Is it down on purpose when I try to go to a page that requires login and
when I enter the proper data it jumps me back a page? Shouldn't I be
able to go to some page and if I don't have the rights ask for them,
after which I am back to the page I was trying to get to?
Regards,
Jason
--~--~
create any methods... is not working all the time.
Certain pages it always seems to work. But others seem random.
Anything coming I am missing here? Did I do something wrong?
Regards,
Jason Brower
--~--~-~--~~~---~--~~
You received this message because you are subscribe
I doubt I will have more than 100 records for now. I will stick with
the example as it's a prototyped project anyway.
Regards,
Jason Brower
On Sun, 2009-05-17 at 07:29 -0700, TheDude wrote:
> Another alternative would be pgsql, oracle might be like killing a fly
> with a bazooka ra
I have a table that needs to have a default to the current user in one
of the fields.
I am using auth() and just put default=auth.user.id and it didn't seem
to help. Any ideas?
Regards,
Jason
--~--~-~--~~~---~--~~
You received this message because you are subscri
I am using ui.jquery and have some nice tabs that pull data with ajax.
Can I have it so that when I button is pressed, not only does it submit
the data with ajax, but reloads the data(as if I clicked on one of the
tabs)
Hope that makes sense.
Jason
--~--~-~--~~~---~-
Hi tito,
Doubt this works, but it should give you an idea:
Create your db in your model
Then in your conroller select your db and make it itterable...
menu = db(db.menu).select()
Then you can go over it and select all the items in the list.
{{for item in menu:}}
{{=item.name}}
{{pass}}
At
The weird thing is that this information is loaded in the layout.html
file which all my pages are using. And some pages it loads some it
doesn't. I don't know why.
Fixed the same issue:
if auth.is_logged_in():
response.menu = [
[T('Home'), False, URL(r=request, f='index')]
Could we have a web2py linkedIn group?
I think it would be nice to have a network on linkedIn loving people
there.
Regards,
Jason Brower
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"web2py Web Framework&q
Shucks, you beat me to it!
On Sun, 2009-05-17 at 19:32 -0700, mdipierro wrote:
> Yes, I think some like this should do it.
>
> db.define_table('menu_item',
>SQLField('name'),
>SQLField('link'),
>SQLField('position','integer'),
>SQLField('parent','integer',default=0))
>
> def me
yes. details depend on the implementation and the jquery plugin you
> are using.
>
> On May 17, 12:37 pm, Jason Brower wrote:
> > I am using ui.jquery and have some nice tabs that pull data with ajax.
> > Can I have it so that when I button is pressed, not only does it submit
Actually, I just put in my default.py file the only controller file I am
using.
I place it before all the other methods that I initialize.
I am lookingto it more now.
Regards,
Jason
On Mon, 2009-05-18 at 03:55 -0700, annet.verm...@gmail.com wrote:
> Jason,
>
> Just a thought ... Did you put the
Ironically, I just finnished a school project I did for our journalism
students. They wanted to do this very thing, I set all this very stuff
up in jquery with a basic php page management system. I wanted to do it
in python, but I didn't know about web2py when I started the project.
Regards,
Jas
Massimo,
Perhaps we should have more details on that in the guide.
Horst,
You create your view in the same file you created the controller.
If you created Auth() in default.py then you create
a /default/login.html and it works.
Same with register and so forth.
That password hash, I can't remember
Can we please have someone document this, I would love to have a less,
well, terse example.
Nothing wrong with your explanation, I just like a more tutorial styled
instruction set. :D
Regards,
Jason
On Fri, 2009-05-22 at 05:54 -0700, mdipierro wrote:
> - download trunk
> - Create a new app
> - m
I am creating a social networking site with web2py. So far VERY good.
Regards,
Jason
On Fri, 2009-05-22 at 05:38 -0700, JorgeR wrote:
> thank you
>
> Massimo: what about web2py being used for build big-name like apps
> (gmail, youtube, rtm, facebook)
>
> Would you recommend it over other lang
I have connections with a Debian Developer, a Gentoo Main Chairman, and
an Ubuntu Member. Would you like me to contact them?
Regards,
Jason
On Thu, 2009-05-28 at 18:43 -0700, mdipierro wrote:
>
> > Presently Web2Py so easy to install, even a Cave Man could do it? :-)
>
> I agree. This is for
Understandable, but if someone wants to do it, why not. :D We could
have who ever is wanted to make, or has made, the deb post it to a ppa
for ubuntu/debian.
Regards,
Jason
On Thu, 2009-05-28 at 15:29 -0700, cesmiga wrote:
> Jurgis,
>
> That is a great idea and it would be a quick solution. O
I would like to see that.
Regards,
Jason
On Thu, 2009-05-28 at 14:00 -0700, mdipierro wrote:
> It is actually very easy to change it (<10 lines of code I guess) and
> the source is public.
> perhaps next verion may have a configuration parameter
>
>
> On May 28, 3:23 pm, Evgeny wrote:
> > i s
I love web2py and it's the only framework i feel i am fully capable to do or
learn to do quickly.
However, I remember see that this framework is intended for small to medium
sized deployments. Is this true? What is it that stops us from larger
deployment? Should i pickup django because i may nee
he Google App Engine should
> be able to
> > scale sufficiently for everything but extreme cases :)
> >
> > If you specify more about what you wish to achieve this
> group may be
> > able to give more specific advice h
Oops, there it is. Thanks!
On Tue, 2010-11-16 at 15:06 -0600, Massimo Di Pierro wrote:
>
> Begin forwarded message:
>
I want to start recommending people come to this site for Jobs and
Projects... is that happening yet?
That would be up to you. I know I have registered.
On Thu, 2010-11-18 at 07:10 -0800, selecta wrote:
> A bit off topic question -
> I am currently happily employed and developing web2py based open
> source applications, but when this changes I might want to have a foot
> in the door for finding
I didn't endorse him because I wanted to follow the rule. :D
On Thu, 2010-11-18 at 04:04 -0800, mdipierro wrote:
> No. ;-)
>
> On Nov 17, 9:40 pm, Nathan Freeze wrote:
> > Massimo, your bio is missing a pic. Is it okay to endorse you? :)
> >
> > On Wed, Nov 17, 2010 at 9:23 PM, mdipierro wrote
ot; by our clients.
BR,
Jason Brower
On Thu, 2010-11-18 at 03:59 -0800, mdipierro wrote:
> Are you talking about experts4solutions?
>
> Let me clarify. It is NOT a site where people post jobs and we compete
> for the lowest bid like some other sites. Quite the opposite. We go
>
4 projects so far and I have 6 more planned for this
next year.
BR,
Jason Brower
On Thu, 2010-11-18 at 07:14 -0800, selecta wrote:
> some parts are implemented (plugin based) in the project that I will
> submit in the application exhibition 2.0 ...
>
> On Nov 17, 8:42 pm, mdipierro wr
Actually, if you just unplug your internet before you start. It will
just fly because it gets the error and just uses the local one. But
that's not a solution for everyone. My network cable is a local network
online and having it plugged in makes the browser look for the page for
about a minute.
Yeah, it's a closed and controlled environment and even the most basic
browser that we would be developing for can suuport these features.
On Sun, 2010-11-21 at 10:45 +0100, Branko Vukelic wrote:
> On Sun, Nov 21, 2010 at 12:32 AM, mdipierro wrote:
> > Notice that admin is an app and it can be r
You may be suprised how good you are. Especially in such short time you
can improve. I went from barely scraping up web-pages to some pretty
impressive intra-net sites in just a few months.
.Net will eventually teach you how not to code. It makes you truly
appriciate web2py.
It's tough to have p
I did prototype in 2.5 weeks that would have taken months on Apache
Tomcat (what they were currently using).
And the company was massive, KONE. The content had to handle thousands
of requests, work with 2 database times and lots of XML, and be easy to
use and expand. I am not there now, but to th
I'm a Mormon. (Yes I am...) does that count. :) I would be happy to
help ya.
On Mon, 2010-11-29 at 21:39 -0800, cadrentes wrote:
> I've been learning but too slowly to put together the application I
> envision, not my main job...looking for someone who can help.
<>
You know. I wonder if we could implement an SEO helper. You give the
subject and it automatically grabs some thasaurus and gets you the
similars. :D
BR,
Jason
On Tue, 2010-11-30 at 22:58 +0100, Branko Vukelic wrote:
> "How many SEO specialists are needed to change lightbulb bulb bulbs
> light ch
I use sigular, cause my teacher burned in into our heads if we thought
different. :D
BR,
Jason Brower
On Wed, 2010-12-01 at 01:31 +0100, Branko Vukelic wrote:
> Yeah, this is the pattern I usually use, too.
>
> On Wed, Dec 1, 2010 at 12:41 AM, Thadeus Burgess
> wrote:
> >
Personally, I see the other way. So many programmers, so little
creativity. :D
On Thu, 2010-12-02 at 19:14 -0800, mdipierro wrote:
> http://www.cs.uni.edu/~wallingf/blog/archives/monthly/2010-12.html#e2010-12-01T15_45_40.htm
<>
EASY... 42 is always the answer. :D
On Fri, 2010-12-03 at 14:32 +, António Ramos wrote:
>
> 2+3=10
> 7+2=63
> 6+5=66
> 8+4=96
> So:
>
> 9+7=???
>
>
>
> What is the answer?
> They say the IQ of people that can find it is above 120
>
>
> Dont write here the answer..
> Just the time
y for a fresh install...
http://www.web2py.com/book/default/chapter/13?search=wiki#plugin_wiki
Best Regards,
Jason Brower
Ahh shucks. That would have been nice.
Best Regards,
jason brower
- Original message -
> I am thinking of organizing a party between Christmas and New Year's
> eve.
>
> Who is in Chicago or willing to come anyway? I may be able to
> accommodate a few people - if yo
be the best aproach?
Best Regards,
Jason Brower
What is the web2py comet thing for? Can you explain?
Best Regards,
Jason
On Mon, 2011-01-03 at 09:50 -0800, mdipierro wrote:
> Please check it.
>
> 1.91.6
> - web2py comet via gluon/contrib/comet_messaging.py (html5 websockets)
> experimental
> - fixed problem with services (broken in 1.91.5), t
I am wanted to create a tool that can map points in an image. (Basically
pins on a map.) I thought it best to overly the image with a dive and
get the position in the div. (Somehow...)
Any ideas on how to best do that, and are there any examples that I
could look at?
Best regards,
Jason
Thanks, I didn't know jqueryui has it, I will try that first.
Processing looks really cool for some other things I have been wanted to
do, but then I feel like a 2d graphics programmer at that point.
Best Regards,
Jason Brower
On 01/09/2011 08:14 PM, ron_m wrote:
jQueryUI has the Pos
Very happy to see this.
Thanks!
Jason
On 01/11/2011 05:44 PM, Massimo Di Pierro wrote:
We are still growing exponentially!
I enjoyed the read. Thanks.
Best Regards,
Jason
On 01/14/2011 03:36 AM, Bruno Rocha wrote:
http://blog.gilsondev.com/2011/01/13/interview-creator-of-web2py/
But this is only going to work in GAE is that correct?
On 01/17/2011 06:23 PM, Massimo Di Pierro wrote:
http://web2py.appspot.com/plugin_checkout/default/checkout
On Jan 17, 2:34 am, cjrh wrote:
I am looking for recommendations for payment gateways.I already
know about PayPal, and Authori
#####
And I want to set a field that is hidden in this form to
session.conference_id.
Best Regards,
Jason Brower
different programs?!) Each run seporatly but may
need to pull data from each other at times. It is certainly possible,
it's one of the reasons I chose web2py, because it was written in
python, and python can do just about anything. :P
Best Regards,
Jason Brower
On 01/20/2011 10:08 PM,
interface that would be universally accessable from a
network. (I use amp in twisted, but you may xml or something) and your
interfaces would read that. You could have web2py do that serving of
that data and that would simply things a bit.
Best Regards,
Jason Brower
On 01/21/2011 08:58 PM
Yup... I think you should do that in the controller before you pass it.
It's a two second job so not hard to do.
That and session.variable=-1 is well... -1 it should be variable-=1.
On the other had, you may be going for -1 :P and you may be using a
special loop or something that needs to change
Yup I do it.
I built a twisted server that handled real time interactivity and logic
of my robot. I used amp protocal and build my messages there. Then I
made web2py send request with a small function. As a hint, there is
ampy which is python amp protocal without twisted. I used that to send
I just wrote an email on my twisted server setup. It was very nice as I
have one definition I created that was called when ever I needed to send
a message. Very easy code on both ends.
I will look at tornado adn this anyserver.py sshhhtuff soon. :)
BR,
Jason
On 01/22/2011 10:24 PM, Massimo Di
e controller file.
On Jan 22, 9:19 pm, Jason Brower wrote:
Yup... I think you should do that in the controller before you pass it.
It's a two second job so not hard to do.
That and session.variable=-1 is well... -1 it should be variable-=1.
On the other had, you may be going for -1 :P and
doesn't it returns None)
Place that at the beginning of your file where you have variable = 0 and
see if that is more of what you expected.
---
Best Regards,
Jason Brower
On 01/23/2011 05:15 AM, Rick wrote:
Here is some code from the controller file:
variable = 0
def
Heh, it's crazy with numbers like that they .net is taught at my school
and python is not.
On Mon, 24 Jan 2011, Michele Comitini wrote:
http://i-programmer.info/news/98-languages/1877-language-of-the-year.html
"To the sound of the opening music to a well known classic comedy
program I can rev
b.commit()
in particular I thought that this:
form.vars.id
would give me the id that was to be used in this form, but I think I am
wrong as it returns None and printing form.vars shows key of 'id'
Any ideas how to get the id?
---
Best Regards,
Jason Brower
On 01/25/2011 10:06 PM, g...@rtplanb.com wrote:
I have been enjoying the learning process with web2py, honestly I have
little knowledge of html, css and especially ajax.
I am not far off having a functional website building on the
scaffolding application, however I have a few questions please:
You will probably know what I would say being the web2py list and all, but
a bit of information about your project may help sway the choice one way
or the other.
BR,
Jason
On Tue, 25 Jan 2011, Alfonso de la Guarda wrote:
Hi,
My development team is in a debate about which framework to employ
Thanks for the heads up. I had to create the group and add me to that
group.
BR,
Jason Brower
On 01/26/2011 09:24 PM, Massimo Di Pierro wrote:
There is a known bug. If you try generate dummy database entries for a
field that must be unique, you may get accidental duplicates that
result in an
n 25 Gen, 15:48, DenesL wrote:
Hi Jason,
onvalidation runs before the record is inserted so form.vars.id does
not have a value yet.
You have to move the code from conference_form_details and place it
after the accepts.
Denes.
On Jan 25, 9:11 am, Jason Brower wrote:
I have this...
d
How many plugin...
It would, every once in a while, at triggers etc.. tweet some session
variable.
The reason I say this is I think it would be cool to see tweets of how
many downloads a day we get from web2py.com and how many where the
plugin wiki. Etc...
It could be useful for other things
I wonder if there is an example where this could be an advantage for us?
BR,
Jason
On Wed, 26 Jan 2011, Jonathan Lundell wrote:
This applies to both the old and new URL rewrite paths, regardless of whether
there's any rewriting going on.
Previously, a trailing slash after args would cause an
I am reading in the book:
crud.settings.create_onvalidation = StorageList()
But I just don't get it.
I wanted to send an email when the form submits successfully, and I have
created a method for that.
send_email(to_email, subject, message)
How would I do this?
BR,
Jason Brower
Sounds fun! Let's talk more about it.
skype:super-jason
or just use my email...
On 07/16/2012 01:23 AM, web-dev-m wrote:
I am working on many projects, and I figured I would ask for help on
here to see if anyone wants to help with this.
We are currently working on a project to help hearing im
available on skype or through this email.
Best regards,
Jason Brower
On 07/17/2012 02:23 AM, Pepe C wrote:
Hi,
We have a set of applications on web2py and we are looking for an
expert that can help us to operate and develop them. This is a
long-term role taking ~10 hours a week, although we do
I am wanting to create large amounts of content that needs to be
translated. Is the Lazy T() way the best for this?
Whole pages of text will need to be translated.
BR,
Jason Brower
--
It seems that our production system stoped serving translated versions
of our website. Even when our browsers are on the correct settings it
doesn't switch to our Finnish translations.
Any way I could resolve this? Something you need to know?
BR,
Jason
http://interestid.com
--
server all you like.
http://testing.interestid.com
Hope you can help.
You can use this use if you like.
U:testing_user
P:testinguser
BR,
Jason Brower
--
Is there a way I can build a form on one controller. Then send data to
it including a file and various other things
And then save that information to a database?
Sounds simple right?
I want to do it dynamically with my nicEdit integration. That is, I do
something just like this...
http://
r.attender.requires =
IS_IN_DB(db,db.auth_user.id,'%(nickname)s')
db.event_attender.event.requires = IS_IN_DB(db,db.event.id,'%(name)s')
db.event_attender.bio_text.widget = lambda field,value: \
SQLFORM.widgets.text.widget(field,value,_class='text nicedit',
_style="color:red")
if auth.is_logged_in():
db.event_attender.attender.default = auth.user.id
Best Regards,
Jason Brower
lations on tags or other tag relations. Very powerful.
br,
Jason
On 05/17/2012 08:32 PM, Marin Pranjic' wrote:
I am not sure if I understand your model. Can you explain "tag_link" ?
Marin
On Thu, May 17, 2012 at 6:28 PM, Jason Brower <mailto:encomp...@gmail.com>> wrote:
For the third one this is to further show the relevance of a user
because they are living near you, but they should be someone that at
least has something in common with you.
BR,
Jason Brower
On 05/17/2012 09:22 PM, Andrew wrote:
If another user has a tag that UserA is looking for, then
l_ +1 if you are
in the same city. Got it.
Yes, that is correct.
BR,
Jason Brower
l give
you another 25� for that implementation as well. :)
---
BR,
Jason Brower
--
Carlos J. Costa
Cientista da Computação
Esp. Gestão em Telecom
EL MELECH NEEMAN!
אָמֵן
Yes, it can be redundant. Ignore it if you like.
BR,
Jason
On 05/17/2012 10:32 PM, Marin Pranjić wrote:
and why both tag and tag_link have an event.id <http://event.id>
field? is this redundant?
On Thu, May 17, 2012 at 7:56 PM, Jason Brower <mailto:encomp...@gmail.com>> wrote
On 05/18/2012 06:41 AM, Massimo Di Pierro wrote:
http://web2py.com/cookbook
Woot, thanks!
Darn. When I needed it most. :(
BR,
Jason
This bounty has, thankfully, been solved. Thank you to all those that
have participated! It has saved me so much time!
BR,
Jason Brower
On 05/17/2012 07:28 PM, Jason Brower wrote:
I have the event management tool I have been working on for 2 years
now and I have made some changes to the code
It is not totally implemented or verified at this point. But so far it
seems to be working. I will post the answer later along with a special
module I also made that uses this method. I think you guys will like it.
BR,
Jason Brower
On 05/18/2012 09:15 PM, Carlos Costa wrote:
The answer
gards,
Jason Brower
How... How does it work?
http://www.youtube.com/watch?v=xOrgLj9lOwk
I haven't a clue how to check for that. :/
BR,
Jason
On 05/21/2012 04:05 PM, Jonathan Lundell wrote:
On May 20, 2012, at 10:36 PM, Jason Brower wrote:
A suppose it would be a little off topic, but I need it for my w
Fantastic! I looked and on the dynamic parts it shows the powered by
tag and on the other parts it doesn't so it clearly is using the other
service, apache. Thanks!
BR,
Jason
On 05/21/2012 08:04 PM, Anthony wrote:
How to test? What I do is to use curl -I to look at the http
response
I wonder if reactor is a reserved word in web2py. Could you try giving
it a different namespace?
from twisted import reactor as another_reactor
On 05/23/2012 06:07 AM, Hugh Barker wrote:
Hi,
I need to run some code that uses the Twisted library from within
web2py (listening to multicast event
Locally I only want to use SQLite. And on the deployment I want to use
Postgres.
Is there a way to make this happen automatically?
BR,
Jason Brower
:
Traceback (most recent call last):
File "/home/www-data/web2py/gluon/dal.py", line 5955, in __init__
self._adapter = ADAPTERS[self._dbname](*args)
File "/home/www-data/web2py/gluon/dal.py", line 1999, in __init__
self.driver = drivers.get('pg8000')
AttributeError: 'list' object has no attribute 'get'
The server is located locally on an amazon system running ubuntu. I
created the postres user and it seems to be open and connectable. I
have also created the database postgres.
Any ideas why it wouldn't work?
BR,
Jason Brower
, May 23, 2012 11:14:18 AM UTC-4, rochacbruno wrote:
if request.is_local():
con = "sqlite://."
else:
con = "postgres://..."
db = DAL(con)
On Wed, May 23, 2012 at 12:06 PM, Jason Brower
mailto:encomp...@gmail.com>> wrote:
And I just noticed the comment here:
"Creating new tables dynamically is not allowed."
Isn't this just what I am about to do?
---
BR,
Jason Brower
On 05/23/2012 07:04 PM, Massimo Di Pierro wrote:
This has been fixed in trunk some time ago
self.driver = drivers.get('
I now have the database up and running, but when I try to do this:
db.export_to_csv_file(open('/home/www-data/web2py/applications/welcome/uploads/file.csv',
'wb'))
db2.import_from_csv_file(open('/home/www-data/web2py/applications/welcome/uploads/file.csv',
'rb'))
It tells me:
Traceback(most
Would having an empty table raise this error?
On 05/23/2012 08:14 PM, pbreit wrote:
Apparently choking on this line:
elif not line.startswith('TABLE ') or not line[6:] in
self.tables:
raise SyntaxError, 'invalid file format'
Does your file look OK when taking this
When I emptied my database locally and tried to connect to the server
remotely I get
ProgrammingError: ('FATAL','28000','no pg_hba.conf entry for host "85.23.56.232", user
"postgres", database "postgres", SSL off')
This is because I haven't setup this computer as a connectable host, I
guess.
I got the connection to work. However, it's now throwing the same error
as before. Dang.
This is on a blank database to csv. Attached...
On 05/24/2012 12:54 AM, pbreit wrote:
It might. Can you try with an empty DB?
On Wednesday, May 23, 2012 10:50:48 AM UTC-7, encompass wrote:
Would havin
501 - 600 of 760 matches
Mail list logo