[web2py] Re: what can I do with this error: Getaadrinfo Failed.

2015-09-23 Thread Leonel Câmara
This seems like a temporary error where your DNS wasn't working so it 
couldn't download the web2py_win from web2py.com which is the first step to 
make an exe with your application.

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: what can I do with this error: Getaadrinfo Failed.

2015-09-23 Thread Leonel Câmara
So looking at ERROR.py you're also having problems checking for a new 
version in admin. I think you have some kind of proxy involved that is 
creating problems. Maybe a work VPN or something like that.

-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: what can I do with this error: Getaadrinfo Failed.

2015-09-23 Thread Maurice Waka
I thought I could download my app(what ia have developed) as .exe

On Wed, Sep 23, 2015 at 2:35 PM, Leonel Câmara 
wrote:

> This seems like a temporary error where your DNS wasn't working so it
> couldn't download the web2py_win from web2py.com which is the first step
> to make an exe with your application.
>
> --
> 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 a topic in the
> Google Groups "web2py-users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/web2py/dPYVvZW38o8/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> web2py+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: what can I do with this error: Getaadrinfo Failed.

2015-09-23 Thread Maurice Waka
On Wed, Sep 23, 2015 at 2:32 PM, Maurice Waka  wrote:

> This is the error I got.
> Kind regards
>
> On Sun, Sep 20, 2015 at 6:32 PM, Massimo Di Pierro <
> massimo.dipie...@gmail.com> wrote:
>
>> Please submit a bug report. Do you have any more detail about the error
>> and the OS you are using to build and to run the exe code?
>>
>> On Sunday, 20 September 2015 00:29:06 UTC-5, Maurice Waka wrote:
>>>
>>> When trying to custom pack and download my app as .exe, I get this error:
>>>
>>> [Errno socket error] [Errno 11004] getaddrinfo failed
>>>
>>> How can I resolve it?
>>>
>> --
>> 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 a topic in the
>> Google Groups "web2py-users" group.
>> To unsubscribe from this topic, visit
>> https://groups.google.com/d/topic/web2py/dPYVvZW38o8/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to
>> web2py+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


ERROR.py
Description: Binary data


[web2py] Re: what can I do with this error: Getaadrinfo Failed.

2015-09-23 Thread Leonel Câmara
You can, however the way this works is:

1 - Download the web2py windows executable version
2 - Put your Application in it
3 - Change routes.py to make your application the default one.

You are failing at the first step because urllib is not being able to get 
the ip address of web2py.com.

Can you test something for me, open a python interpreter. There type:

import socket
socket.getaddrinfo('web2py.com', 80)

Does this work?

To be clear, this is a DNS problem.

-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] Re: what can I do with this error: Getaadrinfo Failed.

2015-09-23 Thread Maurice Waka
I will get you the info soon.
Am not at my 'IT' desk at the moment.
Thanks !!

On Wed, Sep 23, 2015 at 4:44 PM, Leonel Câmara 
wrote:

> You can, however the way this works is:
>
> 1 - Download the web2py windows executable version
> 2 - Put your Application in it
> 3 - Change routes.py to make your application the default one.
>
> You are failing at the first step because urllib is not being able to get
> the ip address of web2py.com.
>
> Can you test something for me, open a python interpreter. There type:
>
> import socket
> socket.getaddrinfo('web2py.com', 80)
>
> Does this work?
>
> To be clear, this is a DNS problem.
>
> --
> 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 a topic in the
> Google Groups "web2py-users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/web2py/dPYVvZW38o8/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> web2py+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: what can I do with this error: Getaadrinfo Failed.

2015-09-20 Thread Massimo Di Pierro
Please submit a bug report. Do you have any more detail about the error and 
the OS you are using to build and to run the exe code?

On Sunday, 20 September 2015 00:29:06 UTC-5, Maurice Waka wrote:
>
> When trying to custom pack and download my app as .exe, I get this error:
>
> [Errno socket error] [Errno 11004] getaddrinfo failed 
>
> How can I resolve it?
>

-- 
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.
For more options, visit https://groups.google.com/d/optout.