[web2py] SQLFORMGRID - CSS - LAYOUT

2019-12-04 Thread L c
Hi,
Soory but i do not find answer:

I did that  :

   1. Create a subfolder of static (example "css_template")
   2. Move template files to static/css_template
   3. Move static/css_template/index.html to views/layout.html
   4. Edit views/layout.html to fix *href* and *src* to static files using 
   {{=URL('static','css_template/style.css')}}
   5. add these to views/layout.html where you want them to appear

I have created a static html page with css like  ()
inside this page html i have {{=list}}  (From controler : list= 
SQLFORM.grid(query=query,maxtextlength=20,orderby=~db.t_news.id,deletable=False,editable=False,create=False,advanced_search=False,csv=False)

When i want to edit a record , the css ... are not taken ! where can i 
change this ?

thank you

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/57f55765-0a4e-4257-8287-caa1a7c33517%40googlegroups.com.


[web2py] debian 10 : mysql Ver 8.0.19 f : mysql_secure_installation

2020-04-21 Thread L c
Hello,
I cannot access to a mysql database, il am sure the login/pwd are ok, 
tested on command line
On my old sever it was ok, no pb and now impossible :(
Have you an idea ?
thank you

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/21ae5f18-9c31-40a9-944c-93415dc7b27a%40googlegroups.com.


[web2py] Re: debian 10 : mysql Ver 8.0.19 f : mysql_secure_installation

2020-04-21 Thread L c
x# mysql -h localhost -u usertest -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 420
Server version: 8.0.19 MySQL Community Server - GPL

Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

mysql> use 4test
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> show tables
-> ;
+-+
| Tables_in_4test |
+-+
| personnel   |
+-+
1 row in set (0,00 sec)

Le mardi 21 avril 2020 17:37:56 UTC+2, L c a écrit :
>
> Hello,
> I cannot access to a mysql database, il am sure the login/pwd are ok, 
> tested on command line
> On my old sever it was ok, no pb and now impossible :(
> Have you an idea ?
> thank you
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/ee2fca04-5190-492c-b9d4-2b58d1bf373a%40googlegroups.com.


[web2py] Re: debian 10 : mysql Ver 8.0.19 f : mysql_secure_installation

2020-04-21 Thread L c
 Failure to connect, tried 5 times: 
Traceback (most recent call last): File 
"/home/www-data/web2py/gluon/packages/dal/pydal/base.py", line 457, in 
__init__ self._adapter = adapter(**kwargs) File 
"/home/www-data/web2py/gluon/packages/dal/pydal/adapters/__init__.py", line 
39, in __call__ obj = super(AdapterMeta, cls).__call__(*args, **kwargs) 
File "/home/www-data/web2py/gluon/packages/dal/pydal/adapters/base.py", 
line 369, in __init__ super(SQLAdapter, self).__init__(*args, **kwargs) 
File "/home/www-data/web2py/gluon/packages/dal/pydal/adapters/base.py", 
line 53, in __init__ self.reconnect() File 
"/home/www-data/web2py/gluon/packages/dal/pydal/connection.py", line 154, 
in reconnect self.connection = self.connector() File 
"/home/www-data/web2py/gluon/packages/dal/pydal/adapters/mysql.py", line 
51, in connector return self.driver.connect(**self.driver_args) File 
"/home/www-data/web2py/gluon/contrib/pymysql/__init__.py", line 90, in 
Connect return Connection(*args, **kwargs) File 
"/home/www-data/web2py/gluon/contrib/pymysql/connections.py", line 688, in 
__init__ self.connect() File 
"/home/www-data/web2py/gluon/contrib/pymysql/connections.py", line 905, in 
connect self._get_server_information() File 
"/home/www-data/web2py/gluon/contrib/pymysql/connections.py", line 1231, in 
_get_server_information self.server_charset = charset_by_id(lang).name File 
"/home/www-data/web2py/gluon/contrib/pymysql/charset.py", line 38, in by_id 
return self._by_id[id] KeyError: 255 

Le mardi 21 avril 2020 17:37:56 UTC+2, L c a écrit :
>
> Hello,
> I cannot access to a mysql database, il am sure the login/pwd are ok, 
> tested on command line
> On my old sever it was ok, no pb and now impossible :(
> Have you an idea ?
> thank you
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/795668fa-7dcb-47cf-80e3-851e28034269%40googlegroups.com.


[web2py] Re: debian 10 : mysql Ver 8.0.19 f : mysql_secure_installation

2020-04-21 Thread L c
New server
same app
same credentials
thank you


Le mardi 21 avril 2020 22:04:43 UTC+2, Jim S a écrit :
>
> Is this all running on the same machine?
>
> I'm assuming you haven't changed your app at all, the database server is 
> just new.  Correct?  Same credentials apply?
>
> -Jim
>
> On Tuesday, April 21, 2020 at 2:30:15 PM UTC-5, L c wrote:
>>
>>  Failure to connect, tried 5 times: 
>> Traceback (most recent call last): File 
>> "/home/www-data/web2py/gluon/packages/dal/pydal/base.py", line 457, in 
>> __init__ self._adapter = adapter(**kwargs) File 
>> "/home/www-data/web2py/gluon/packages/dal/pydal/adapters/__init__.py", line 
>> 39, in __call__ obj = super(AdapterMeta, cls).__call__(*args, **kwargs) 
>> File "/home/www-data/web2py/gluon/packages/dal/pydal/adapters/base.py", 
>> line 369, in __init__ super(SQLAdapter, self).__init__(*args, **kwargs) 
>> File "/home/www-data/web2py/gluon/packages/dal/pydal/adapters/base.py", 
>> line 53, in __init__ self.reconnect() File 
>> "/home/www-data/web2py/gluon/packages/dal/pydal/connection.py", line 154, 
>> in reconnect self.connection = self.connector() File 
>> "/home/www-data/web2py/gluon/packages/dal/pydal/adapters/mysql.py", line 
>> 51, in connector return self.driver.connect(**self.driver_args) File 
>> "/home/www-data/web2py/gluon/contrib/pymysql/__init__.py", line 90, in 
>> Connect return Connection(*args, **kwargs) File 
>> "/home/www-data/web2py/gluon/contrib/pymysql/connections.py", line 688, in 
>> __init__ self.connect() File 
>> "/home/www-data/web2py/gluon/contrib/pymysql/connections.py", line 905, in 
>> connect self._get_server_information() File 
>> "/home/www-data/web2py/gluon/contrib/pymysql/connections.py", line 1231, in 
>> _get_server_information self.server_charset = charset_by_id(lang).name File 
>> "/home/www-data/web2py/gluon/contrib/pymysql/charset.py", line 38, in by_id 
>> return self._by_id[id] KeyError: 255 
>>
>> Le mardi 21 avril 2020 17:37:56 UTC+2, L c a écrit :
>>>
>>> Hello,
>>> I cannot access to a mysql database, il am sure the login/pwd are ok, 
>>> tested on command line
>>> On my old sever it was ok, no pb and now impossible :(
>>> Have you an idea ?
>>> thank you
>>>
>>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/93626f3b-6e42-4520-9cac-d24577798a3b%40googlegroups.com.


[web2py] Re: debian 10 : mysql Ver 8.0.19 f : mysql_secure_installation

2020-04-21 Thread L c
if i test with a new app, new bdd a simple one it does not work :( 
(credentials are good, port 3306 open .. checked by command line or 
phpmyadmin)

Le mercredi 22 avril 2020 00:59:12 UTC+2, L c a écrit :
>
> New server
> same app
> same credentials
> thank you
>
>
> Le mardi 21 avril 2020 22:04:43 UTC+2, Jim S a écrit :
>>
>> Is this all running on the same machine?
>>
>> I'm assuming you haven't changed your app at all, the database server is 
>> just new.  Correct?  Same credentials apply?
>>
>> -Jim
>>
>> On Tuesday, April 21, 2020 at 2:30:15 PM UTC-5, L c wrote:
>>>
>>>  Failure to connect, tried 5 times: 
>>> Traceback (most recent call last): File 
>>> "/home/www-data/web2py/gluon/packages/dal/pydal/base.py", line 457, in 
>>> __init__ self._adapter = adapter(**kwargs) File 
>>> "/home/www-data/web2py/gluon/packages/dal/pydal/adapters/__init__.py", line 
>>> 39, in __call__ obj = super(AdapterMeta, cls).__call__(*args, **kwargs) 
>>> File "/home/www-data/web2py/gluon/packages/dal/pydal/adapters/base.py", 
>>> line 369, in __init__ super(SQLAdapter, self).__init__(*args, **kwargs) 
>>> File "/home/www-data/web2py/gluon/packages/dal/pydal/adapters/base.py", 
>>> line 53, in __init__ self.reconnect() File 
>>> "/home/www-data/web2py/gluon/packages/dal/pydal/connection.py", line 154, 
>>> in reconnect self.connection = self.connector() File 
>>> "/home/www-data/web2py/gluon/packages/dal/pydal/adapters/mysql.py", line 
>>> 51, in connector return self.driver.connect(**self.driver_args) File 
>>> "/home/www-data/web2py/gluon/contrib/pymysql/__init__.py", line 90, in 
>>> Connect return Connection(*args, **kwargs) File 
>>> "/home/www-data/web2py/gluon/contrib/pymysql/connections.py", line 688, in 
>>> __init__ self.connect() File 
>>> "/home/www-data/web2py/gluon/contrib/pymysql/connections.py", line 905, in 
>>> connect self._get_server_information() File 
>>> "/home/www-data/web2py/gluon/contrib/pymysql/connections.py", line 1231, in 
>>> _get_server_information self.server_charset = charset_by_id(lang).name File 
>>> "/home/www-data/web2py/gluon/contrib/pymysql/charset.py", line 38, in by_id 
>>> return self._by_id[id] KeyError: 255 
>>>
>>> Le mardi 21 avril 2020 17:37:56 UTC+2, L c a écrit :
>>>>
>>>> Hello,
>>>> I cannot access to a mysql database, il am sure the login/pwd are ok, 
>>>> tested on command line
>>>> On my old sever it was ok, no pb and now impossible :(
>>>> Have you an idea ?
>>>> thank you
>>>>
>>>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/691dc7e1-966c-4428-b055-3cc18757e35f%40googlegroups.com.


Re: [web2py] Re: debian 10 : mysql Ver 8.0.19 f : mysql_secure_installation

2020-04-21 Thread L c
No

Le mercredi 22 avril 2020 01:41:39 UTC+2, Jim S a écrit :
>
> Is the DB on a separate server from the web application?
>
> Jim
>
>
> On Tue, Apr 21, 2020, 5:59 PM L c > 
> wrote:
>
>> New server
>> same app
>> same credentials
>> thank you
>>
>>
>> Le mardi 21 avril 2020 22:04:43 UTC+2, Jim S a écrit :
>>>
>>> Is this all running on the same machine?
>>>
>>> I'm assuming you haven't changed your app at all, the database server is 
>>> just new.  Correct?  Same credentials apply?
>>>
>>> -Jim
>>>
>>> On Tuesday, April 21, 2020 at 2:30:15 PM UTC-5, L c wrote:
>>>>
>>>>  Failure to connect, tried 5 times: 
>>>> Traceback (most recent call last): File 
>>>> "/home/www-data/web2py/gluon/packages/dal/pydal/base.py", line 457, in 
>>>> __init__ self._adapter = adapter(**kwargs) File 
>>>> "/home/www-data/web2py/gluon/packages/dal/pydal/adapters/__init__.py", 
>>>> line 
>>>> 39, in __call__ obj = super(AdapterMeta, cls).__call__(*args, **kwargs) 
>>>> File "/home/www-data/web2py/gluon/packages/dal/pydal/adapters/base.py", 
>>>> line 369, in __init__ super(SQLAdapter, self).__init__(*args, **kwargs) 
>>>> File "/home/www-data/web2py/gluon/packages/dal/pydal/adapters/base.py", 
>>>> line 53, in __init__ self.reconnect() File 
>>>> "/home/www-data/web2py/gluon/packages/dal/pydal/connection.py", line 154, 
>>>> in reconnect self.connection = self.connector() File 
>>>> "/home/www-data/web2py/gluon/packages/dal/pydal/adapters/mysql.py", line 
>>>> 51, in connector return self.driver.connect(**self.driver_args) File 
>>>> "/home/www-data/web2py/gluon/contrib/pymysql/__init__.py", line 90, in 
>>>> Connect return Connection(*args, **kwargs) File 
>>>> "/home/www-data/web2py/gluon/contrib/pymysql/connections.py", line 688, in 
>>>> __init__ self.connect() File 
>>>> "/home/www-data/web2py/gluon/contrib/pymysql/connections.py", line 905, in 
>>>> connect self._get_server_information() File 
>>>> "/home/www-data/web2py/gluon/contrib/pymysql/connections.py", line 1231, 
>>>> in 
>>>> _get_server_information self.server_charset = charset_by_id(lang).name 
>>>> File 
>>>> "/home/www-data/web2py/gluon/contrib/pymysql/charset.py", line 38, in 
>>>> by_id 
>>>> return self._by_id[id] KeyError: 255 
>>>>
>>>> Le mardi 21 avril 2020 17:37:56 UTC+2, L c a écrit :
>>>>>
>>>>> Hello,
>>>>> I cannot access to a mysql database, il am sure the login/pwd are ok, 
>>>>> tested on command line
>>>>> On my old sever it was ok, no pb and now impossible :(
>>>>> Have you an idea ?
>>>>> thank you
>>>>>
>>>> -- 
>> 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/EzI9i_62aSo/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to 
>> web...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/web2py/93626f3b-6e42-4520-9cac-d24577798a3b%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/web2py/93626f3b-6e42-4520-9cac-d24577798a3b%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>>
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/c8e648fb-915a-4cde-8fd4-d1a90c21d167%40googlegroups.com.


Re: [web2py] Re: debian 10 : mysql Ver 8.0.19 f : mysql_secure_installation

2020-04-21 Thread L c
if i try to create a new app with that it does not work, why ?? i don't 
know first time it happens. mysql-server well installed , with sqlite it 
works fine ... i don't know what to do , thank you again for your help

dbun = DAL('mysql://root:mypwd@localhost:3306/4test', pool_size=0)
#dbun = DAL("sqlite://storage.sqlite")
dbun.define_table('personnel',
Field('login', type = 'string' , length = 25 ),
Field('nom', type = 'string' , length = 20 ),
migrate=True)






Le mercredi 22 avril 2020 02:05:33 UTC+2, L c a écrit :
>
> No
>
> Le mercredi 22 avril 2020 01:41:39 UTC+2, Jim S a écrit :
>>
>> Is the DB on a separate server from the web application?
>>
>> Jim
>>
>>
>> On Tue, Apr 21, 2020, 5:59 PM L c  wrote:
>>
>>> New server
>>> same app
>>> same credentials
>>> thank you
>>>
>>>
>>> Le mardi 21 avril 2020 22:04:43 UTC+2, Jim S a écrit :
>>>>
>>>> Is this all running on the same machine?
>>>>
>>>> I'm assuming you haven't changed your app at all, the database server 
>>>> is just new.  Correct?  Same credentials apply?
>>>>
>>>> -Jim
>>>>
>>>> On Tuesday, April 21, 2020 at 2:30:15 PM UTC-5, L c wrote:
>>>>>
>>>>>  Failure to connect, tried 5 times: 
>>>>> Traceback (most recent call last): File 
>>>>> "/home/www-data/web2py/gluon/packages/dal/pydal/base.py", line 457, in 
>>>>> __init__ self._adapter = adapter(**kwargs) File 
>>>>> "/home/www-data/web2py/gluon/packages/dal/pydal/adapters/__init__.py", 
>>>>> line 
>>>>> 39, in __call__ obj = super(AdapterMeta, cls).__call__(*args, **kwargs) 
>>>>> File "/home/www-data/web2py/gluon/packages/dal/pydal/adapters/base.py", 
>>>>> line 369, in __init__ super(SQLAdapter, self).__init__(*args, **kwargs) 
>>>>> File "/home/www-data/web2py/gluon/packages/dal/pydal/adapters/base.py", 
>>>>> line 53, in __init__ self.reconnect() File 
>>>>> "/home/www-data/web2py/gluon/packages/dal/pydal/connection.py", line 154, 
>>>>> in reconnect self.connection = self.connector() File 
>>>>> "/home/www-data/web2py/gluon/packages/dal/pydal/adapters/mysql.py", line 
>>>>> 51, in connector return self.driver.connect(**self.driver_args) File 
>>>>> "/home/www-data/web2py/gluon/contrib/pymysql/__init__.py", line 90, in 
>>>>> Connect return Connection(*args, **kwargs) File 
>>>>> "/home/www-data/web2py/gluon/contrib/pymysql/connections.py", line 688, 
>>>>> in 
>>>>> __init__ self.connect() File 
>>>>> "/home/www-data/web2py/gluon/contrib/pymysql/connections.py", line 905, 
>>>>> in 
>>>>> connect self._get_server_information() File 
>>>>> "/home/www-data/web2py/gluon/contrib/pymysql/connections.py", line 1231, 
>>>>> in 
>>>>> _get_server_information self.server_charset = charset_by_id(lang).name 
>>>>> File 
>>>>> "/home/www-data/web2py/gluon/contrib/pymysql/charset.py", line 38, in 
>>>>> by_id 
>>>>> return self._by_id[id] KeyError: 255 
>>>>>
>>>>> Le mardi 21 avril 2020 17:37:56 UTC+2, L c a écrit :
>>>>>>
>>>>>> Hello,
>>>>>> I cannot access to a mysql database, il am sure the login/pwd are ok, 
>>>>>> tested on command line
>>>>>> On my old sever it was ok, no pb and now impossible :(
>>>>>> Have you an idea ?
>>>>>> thank you
>>>>>>
>>>>> -- 
>>> 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/EzI9i_62aSo/unsubscribe.
>>> To unsubscribe from this group and all its topics, send an email to 
>>> web...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/web2py/93626f3b-6e42-4520-9cac-d24577798a3b%40googlegroups.com
>>>  
>>> <https://groups.google.com/d/msgid/web2py/93626f3b-6e42-4520-9cac-d24577798a3b%40googlegroups.com?utm_medium=email&utm_source=footer>
>>> .
>>>
>>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/375e46bd-fe89-41dd-9244-4c110201a4f1%40googlegroups.com.


Re: [web2py] Re: debian 10 : mysql Ver 8.0.19 f : mysql_secure_installation

2020-04-21 Thread L c
no idea ?

Le mercredi 22 avril 2020 02:12:43 UTC+2, L c a écrit :
>
> if i try to create a new app with that it does not work, why ?? i don't 
> know first time it happens. mysql-server well installed , with sqlite it 
> works fine ... i don't know what to do , thank you again for your help
>
> dbun = DAL('mysql://root:mypwd@localhost:3306/4test', pool_size=0)
> #dbun = DAL("sqlite://storage.sqlite")
> dbun.define_table('personnel',
> Field('login', type = 'string' , length = 25 ),
> Field('nom', type = 'string' , length = 20 ),
> migrate=True)
>
>
>
>
>
>
> Le mercredi 22 avril 2020 02:05:33 UTC+2, L c a écrit :
>>
>> No
>>
>> Le mercredi 22 avril 2020 01:41:39 UTC+2, Jim S a écrit :
>>>
>>> Is the DB on a separate server from the web application?
>>>
>>> Jim
>>>
>>>
>>> On Tue, Apr 21, 2020, 5:59 PM L c  wrote:
>>>
>>>> New server
>>>> same app
>>>> same credentials
>>>> thank you
>>>>
>>>>
>>>> Le mardi 21 avril 2020 22:04:43 UTC+2, Jim S a écrit :
>>>>>
>>>>> Is this all running on the same machine?
>>>>>
>>>>> I'm assuming you haven't changed your app at all, the database server 
>>>>> is just new.  Correct?  Same credentials apply?
>>>>>
>>>>> -Jim
>>>>>
>>>>> On Tuesday, April 21, 2020 at 2:30:15 PM UTC-5, L c wrote:
>>>>>>
>>>>>>  Failure to connect, tried 5 times: 
>>>>>> Traceback (most recent call last): File 
>>>>>> "/home/www-data/web2py/gluon/packages/dal/pydal/base.py", line 457, in 
>>>>>> __init__ self._adapter = adapter(**kwargs) File 
>>>>>> "/home/www-data/web2py/gluon/packages/dal/pydal/adapters/__init__.py", 
>>>>>> line 
>>>>>> 39, in __call__ obj = super(AdapterMeta, cls).__call__(*args, **kwargs) 
>>>>>> File "/home/www-data/web2py/gluon/packages/dal/pydal/adapters/base.py", 
>>>>>> line 369, in __init__ super(SQLAdapter, self).__init__(*args, **kwargs) 
>>>>>> File "/home/www-data/web2py/gluon/packages/dal/pydal/adapters/base.py", 
>>>>>> line 53, in __init__ self.reconnect() File 
>>>>>> "/home/www-data/web2py/gluon/packages/dal/pydal/connection.py", line 
>>>>>> 154, 
>>>>>> in reconnect self.connection = self.connector() File 
>>>>>> "/home/www-data/web2py/gluon/packages/dal/pydal/adapters/mysql.py", line 
>>>>>> 51, in connector return self.driver.connect(**self.driver_args) File 
>>>>>> "/home/www-data/web2py/gluon/contrib/pymysql/__init__.py", line 90, in 
>>>>>> Connect return Connection(*args, **kwargs) File 
>>>>>> "/home/www-data/web2py/gluon/contrib/pymysql/connections.py", line 688, 
>>>>>> in 
>>>>>> __init__ self.connect() File 
>>>>>> "/home/www-data/web2py/gluon/contrib/pymysql/connections.py", line 905, 
>>>>>> in 
>>>>>> connect self._get_server_information() File 
>>>>>> "/home/www-data/web2py/gluon/contrib/pymysql/connections.py", line 1231, 
>>>>>> in 
>>>>>> _get_server_information self.server_charset = charset_by_id(lang).name 
>>>>>> File 
>>>>>> "/home/www-data/web2py/gluon/contrib/pymysql/charset.py", line 38, in 
>>>>>> by_id 
>>>>>> return self._by_id[id] KeyError: 255 
>>>>>>
>>>>>> Le mardi 21 avril 2020 17:37:56 UTC+2, L c a écrit :
>>>>>>>
>>>>>>> Hello,
>>>>>>> I cannot access to a mysql database, il am sure the login/pwd are 
>>>>>>> ok, tested on command line
>>>>>>> On my old sever it was ok, no pb and now impossible :(
>>>>>>> Have you an idea ?
>>>>>>> thank you
>>>>>>>
>>>>>> -- 
>>>> 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/EzI9i_62aSo/unsubscribe.
>>>> To unsubscribe from this group and all its topics, send an email to 
>>>> web...@googlegroups.com.
>>>> To view this discussion on the web visit 
>>>> https://groups.google.com/d/msgid/web2py/93626f3b-6e42-4520-9cac-d24577798a3b%40googlegroups.com
>>>>  
>>>> <https://groups.google.com/d/msgid/web2py/93626f3b-6e42-4520-9cac-d24577798a3b%40googlegroups.com?utm_medium=email&utm_source=footer>
>>>> .
>>>>
>>>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/30d22d25-6b1c-4aaa-9d32-9d6bed96a29e%40googlegroups.com.


Re: [web2py] Re: debian 10 : mysql Ver 8.0.19 f : mysql_secure_installation

2020-04-22 Thread L c
for now it works i don't know why (i have insttalled mysql connector but i 
don't think this is the reason)
after a reboot (2 in fact)  it is now ok
thank you again for your help

Le mercredi 22 avril 2020 14:49:58 UTC+2, Jim S a écrit :
>
> I am using MySQL 8 on my development box.  I'm running 5.7 on production 
> servers.
>
> But, version 8 is working fine for me.  I too had issues when I first 
> installed version 8, but it wasn't with web2py connecting to it.  My 
> problems had more to do with interchanging data between version 5.7 and 8 
> and the way data exports and imports performed.
>
> To the original post.
>
> Have you seen this?
>
>
> https://stackoverflow.com/questions/45368336/error-keyerror-255-when-executing-pymysql-connect
>
> Can you possibly update pymysql on your system?  I'm wondering if you have 
> an older version.
>
> -Jim
>
> On Wednesday, April 22, 2020 at 2:16:36 AM UTC-5, Kevin Keller wrote:
>>
>> I think there is an issue with web2py not supporting mysql version 8 and 
>> above.
>>
>>
>>
>> On Wed, 22 Apr 2020, 03:20 Jim S,  wrote:
>>
>>> In your second post above you're connecting to mysql with user usertest 
>>> and a password.
>>>
>>> In you web2py example you're connecting with user root.
>>>
>>> I'm guessing that is not the issue but can you confirm that you're using 
>>> the same user and password connecting via mysql and via web2py?
>>>
>>> -Jim
>>>
>>> On Tuesday, April 21, 2020 at 7:59:52 PM UTC-5, L c wrote:
>>>>
>>>> no idea ?
>>>>
>>>> Le mercredi 22 avril 2020 02:12:43 UTC+2, L c a écrit :
>>>>>
>>>>> if i try to create a new app with that it does not work, why ?? i 
>>>>> don't know first time it happens. mysql-server well installed , with 
>>>>> sqlite 
>>>>> it works fine ... i don't know what to do , thank you again for your help
>>>>>
>>>>> dbun = DAL('mysql://root:mypwd@localhost:3306/4test', pool_size=0)
>>>>> #dbun = DAL("sqlite://storage.sqlite")
>>>>> dbun.define_table('personnel',
>>>>> Field('login', type = 'string' , length = 25 ),
>>>>> Field('nom', type = 'string' , length = 20 ),
>>>>> migrate=True)
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> Le mercredi 22 avril 2020 02:05:33 UTC+2, L c a écrit :
>>>>>>
>>>>>> No
>>>>>>
>>>>>> Le mercredi 22 avril 2020 01:41:39 UTC+2, Jim S a écrit :
>>>>>>>
>>>>>>> Is the DB on a separate server from the web application?
>>>>>>>
>>>>>>> Jim
>>>>>>>
>>>>>>>
>>>>>>> On Tue, Apr 21, 2020, 5:59 PM L c  wrote:
>>>>>>>
>>>>>>>> New server
>>>>>>>> same app
>>>>>>>> same credentials
>>>>>>>> thank you
>>>>>>>>
>>>>>>>>
>>>>>>>> Le mardi 21 avril 2020 22:04:43 UTC+2, Jim S a écrit :
>>>>>>>>>
>>>>>>>>> Is this all running on the same machine?
>>>>>>>>>
>>>>>>>>> I'm assuming you haven't changed your app at all, the database 
>>>>>>>>> server is just new.  Correct?  Same credentials apply?
>>>>>>>>>
>>>>>>>>> -Jim
>>>>>>>>>
>>>>>>>>> On Tuesday, April 21, 2020 at 2:30:15 PM UTC-5, L c wrote:
>>>>>>>>>>
>>>>>>>>>>  Failure to connect, tried 5 
>>>>>>>>>> times: Traceback (most recent call last): File 
>>>>>>>>>> "/home/www-data/web2py/gluon/packages/dal/pydal/base.py", line 457, 
>>>>>>>>>> in 
>>>>>>>>>> __init__ self._adapter = adapter(**kwargs) File 
>>>>>>>>>> "/home/www-data/web2py/gluon/packages/dal/pydal/adapters/__init__.py",
>>>>>>>>>>  line 
>>>>>>>>>> 39, in __call__ obj = super(AdapterMeta, cls).__ca

Re: [web2py] Re: debian 10 : mysql Ver 8.0.19 f : mysql_secure_installation

2020-04-22 Thread L c
oh i forgot i have hollowed your advice, updating pymysql
thanks again

Le mercredi 22 avril 2020 20:38:09 UTC+2, L c a écrit :
>
> for now it works i don't know why (i have insttalled mysql connector but i 
> don't think this is the reason)
> after a reboot (2 in fact)  it is now ok
> thank you again for your help
>
> Le mercredi 22 avril 2020 14:49:58 UTC+2, Jim S a écrit :
>>
>> I am using MySQL 8 on my development box.  I'm running 5.7 on production 
>> servers.
>>
>> But, version 8 is working fine for me.  I too had issues when I first 
>> installed version 8, but it wasn't with web2py connecting to it.  My 
>> problems had more to do with interchanging data between version 5.7 and 8 
>> and the way data exports and imports performed.
>>
>> To the original post.
>>
>> Have you seen this?
>>
>>
>> https://stackoverflow.com/questions/45368336/error-keyerror-255-when-executing-pymysql-connect
>>
>> Can you possibly update pymysql on your system?  I'm wondering if you 
>> have an older version.
>>
>> -Jim
>>
>> On Wednesday, April 22, 2020 at 2:16:36 AM UTC-5, Kevin Keller wrote:
>>>
>>> I think there is an issue with web2py not supporting mysql version 8 and 
>>> above.
>>>
>>>
>>>
>>> On Wed, 22 Apr 2020, 03:20 Jim S,  wrote:
>>>
>>>> In your second post above you're connecting to mysql with user usertest 
>>>> and a password.
>>>>
>>>> In you web2py example you're connecting with user root.
>>>>
>>>> I'm guessing that is not the issue but can you confirm that you're 
>>>> using the same user and password connecting via mysql and via web2py?
>>>>
>>>> -Jim
>>>>
>>>> On Tuesday, April 21, 2020 at 7:59:52 PM UTC-5, L c wrote:
>>>>>
>>>>> no idea ?
>>>>>
>>>>> Le mercredi 22 avril 2020 02:12:43 UTC+2, L c a écrit :
>>>>>>
>>>>>> if i try to create a new app with that it does not work, why ?? i 
>>>>>> don't know first time it happens. mysql-server well installed , with 
>>>>>> sqlite 
>>>>>> it works fine ... i don't know what to do , thank you again for your help
>>>>>>
>>>>>> dbun = DAL('mysql://root:mypwd@localhost:3306/4test', pool_size=0)
>>>>>> #dbun = DAL("sqlite://storage.sqlite")
>>>>>> dbun.define_table('personnel',
>>>>>> Field('login', type = 'string' , length = 25 ),
>>>>>> Field('nom', type = 'string' , length = 20 ),
>>>>>> migrate=True)
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> Le mercredi 22 avril 2020 02:05:33 UTC+2, L c a écrit :
>>>>>>>
>>>>>>> No
>>>>>>>
>>>>>>> Le mercredi 22 avril 2020 01:41:39 UTC+2, Jim S a écrit :
>>>>>>>>
>>>>>>>> Is the DB on a separate server from the web application?
>>>>>>>>
>>>>>>>> Jim
>>>>>>>>
>>>>>>>>
>>>>>>>> On Tue, Apr 21, 2020, 5:59 PM L c  wrote:
>>>>>>>>
>>>>>>>>> New server
>>>>>>>>> same app
>>>>>>>>> same credentials
>>>>>>>>> thank you
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> Le mardi 21 avril 2020 22:04:43 UTC+2, Jim S a écrit :
>>>>>>>>>>
>>>>>>>>>> Is this all running on the same machine?
>>>>>>>>>>
>>>>>>>>>> I'm assuming you haven't changed your app at all, the database 
>>>>>>>>>> server is just new.  Correct?  Same credentials apply?
>>>>>>>>>>
>>>>>>>>>> -Jim
>>>>>>>>>>
>>>>>>>>>> On Tuesday, April 21, 2020 at 2:30:15 PM UTC-5, L c wrote:
>>>>>>>>>>>
>>>>>>>>>>>  Failure to connect, tried 5 
>>>>>>>>>>> time

Re: [web2py] Re: debian 10 : mysql Ver 8.0.19 f : mysql_secure_installation

2020-04-23 Thread L c
Thank you again, i was feeling alone .

Le mercredi 22 avril 2020 21:11:44 UTC+2, Jim S a écrit :
>
> I'm happy you got it working.
>
> -Jim
>
> On Wed, Apr 22, 2020 at 1:39 PM L c > 
> wrote:
>
>> oh i forgot i have hollowed your advice, updating pymysql
>> thanks again
>>
>> Le mercredi 22 avril 2020 20:38:09 UTC+2, L c a écrit :
>>>
>>> for now it works i don't know why (i have insttalled mysql connector but 
>>> i don't think this is the reason)
>>> after a reboot (2 in fact)  it is now ok
>>> thank you again for your help
>>>
>>> Le mercredi 22 avril 2020 14:49:58 UTC+2, Jim S a écrit :
>>>>
>>>> I am using MySQL 8 on my development box.  I'm running 5.7 on 
>>>> production servers.
>>>>
>>>> But, version 8 is working fine for me.  I too had issues when I first 
>>>> installed version 8, but it wasn't with web2py connecting to it.  My 
>>>> problems had more to do with interchanging data between version 5.7 and 8 
>>>> and the way data exports and imports performed.
>>>>
>>>> To the original post.
>>>>
>>>> Have you seen this?
>>>>
>>>>
>>>> https://stackoverflow.com/questions/45368336/error-keyerror-255-when-executing-pymysql-connect
>>>>
>>>> Can you possibly update pymysql on your system?  I'm wondering if you 
>>>> have an older version.
>>>>
>>>> -Jim
>>>>
>>>> On Wednesday, April 22, 2020 at 2:16:36 AM UTC-5, Kevin Keller wrote:
>>>>>
>>>>> I think there is an issue with web2py not supporting mysql version 8 
>>>>> and above.
>>>>>
>>>>>
>>>>>
>>>>> On Wed, 22 Apr 2020, 03:20 Jim S,  wrote:
>>>>>
>>>>>> In your second post above you're connecting to mysql with user 
>>>>>> usertest and a password.
>>>>>>
>>>>>> In you web2py example you're connecting with user root.
>>>>>>
>>>>>> I'm guessing that is not the issue but can you confirm that you're 
>>>>>> using the same user and password connecting via mysql and via web2py?
>>>>>>
>>>>>> -Jim
>>>>>>
>>>>>> On Tuesday, April 21, 2020 at 7:59:52 PM UTC-5, L c wrote:
>>>>>>>
>>>>>>> no idea ?
>>>>>>>
>>>>>>> Le mercredi 22 avril 2020 02:12:43 UTC+2, L c a écrit :
>>>>>>>>
>>>>>>>> if i try to create a new app with that it does not work, why ?? i 
>>>>>>>> don't know first time it happens. mysql-server well installed , with 
>>>>>>>> sqlite 
>>>>>>>> it works fine ... i don't know what to do , thank you again for your 
>>>>>>>> help
>>>>>>>>
>>>>>>>> dbun = DAL('mysql://root:mypwd@localhost:3306/4test', pool_size=0)
>>>>>>>> #dbun = DAL("sqlite://storage.sqlite")
>>>>>>>> dbun.define_table('personnel',
>>>>>>>> Field('login', type = 'string' , length = 25 ),
>>>>>>>> Field('nom', type = 'string' , length = 20 ),
>>>>>>>> migrate=True)
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> Le mercredi 22 avril 2020 02:05:33 UTC+2, L c a écrit :
>>>>>>>>>
>>>>>>>>> No
>>>>>>>>>
>>>>>>>>> Le mercredi 22 avril 2020 01:41:39 UTC+2, Jim S a écrit :
>>>>>>>>>>
>>>>>>>>>> Is the DB on a separate server from the web application?
>>>>>>>>>>
>>>>>>>>>> Jim
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> On Tue, Apr 21, 2020, 5:59 PM L c  wrote:
>>>>>>>>>>
>>>>>>>>>>> New server
>>>>>>>>>>> same app
>>>>>>>>>>> same credentials
>>>>>>

[web2py] Pack a big app

2020-04-27 Thread L c
Hello,

I would like to transfer an app from server 1 to server 2 (size of the app 
700Mb)
first test : try to pack to build a w2p package --> internal error  (it 
works for app 400 Mb)
Second test : i create a tar from server 1 and i transfer to server 2 --> 
the app tells me no function (note that she works very well on server 1)

Server 1 : debian jessie
Server 2 : debian buster

Any idea ?

thank you very much

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/ccaf7e88-5332-473d-bc2b-b2c2e6ee8933%40googlegroups.com.


Re: [web2py] Pack a big app

2020-04-27 Thread L c
thank neither do i, this is the first time :(, i did no reload the routes, 
i am going to try

thank you again



Le lundi 27 avril 2020 18:05:19 UTC+2, Christian Varas a écrit :
>
>
> Hi, 
>
> To transfer big apps, I do the following: Go to "applications" folder in 
> web2py of serverv1, then zip your app,  then move it through SSH or other 
> method to the new server, and place it in the "applications" folder of 
> web2py of server 2. Reload routes in web2py admin app. I haven't 
> experienced troubles with this method.
>
>
> Cheers.
>
> El lun., 27 abr. 2020 a las 11:29, L c (>) 
> escribió:
>
>> Hello,
>>
>> I would like to transfer an app from server 1 to server 2 (size of the 
>> app 700Mb)
>> first test : try to pack to build a w2p package --> internal error  (it 
>> works for app 400 Mb)
>> Second test : i create a tar from server 1 and i transfer to server 2 --> 
>> the app tells me no function (note that she works very well on server 1)
>>
>> Server 1 : debian jessie
>> Server 2 : debian buster
>>
>> Any idea ?
>>
>> thank you very much
>>
>> -- 
>> 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 web...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/web2py/ccaf7e88-5332-473d-bc2b-b2c2e6ee8933%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/web2py/ccaf7e88-5332-473d-bc2b-b2c2e6ee8933%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>>
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/06e7d7ff-968f-41e8-8375-5d86c88f4ab2%40googlegroups.com.


Re: [web2py] Pack a big app

2020-04-27 Thread L c
you were right, reload routes was good, sorry and thank you again
good day

Le lundi 27 avril 2020 18:13:02 UTC+2, L c a écrit :
>
> thank neither do i, this is the first time :(, i did no reload the routes, 
> i am going to try
>
> thank you again
>
>
>
> Le lundi 27 avril 2020 18:05:19 UTC+2, Christian Varas a écrit :
>>
>>
>> Hi, 
>>
>> To transfer big apps, I do the following: Go to "applications" folder in 
>> web2py of serverv1, then zip your app,  then move it through SSH or other 
>> method to the new server, and place it in the "applications" folder of 
>> web2py of server 2. Reload routes in web2py admin app. I haven't 
>> experienced troubles with this method.
>>
>>
>> Cheers.
>>
>> El lun., 27 abr. 2020 a las 11:29, L c () escribió:
>>
>>> Hello,
>>>
>>> I would like to transfer an app from server 1 to server 2 (size of the 
>>> app 700Mb)
>>> first test : try to pack to build a w2p package --> internal error  (it 
>>> works for app 400 Mb)
>>> Second test : i create a tar from server 1 and i transfer to server 2 
>>> --> the app tells me no function (note that she works very well on server 1)
>>>
>>> Server 1 : debian jessie
>>> Server 2 : debian buster
>>>
>>> Any idea ?
>>>
>>> thank you very much
>>>
>>> -- 
>>> 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 web...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/web2py/ccaf7e88-5332-473d-bc2b-b2c2e6ee8933%40googlegroups.com
>>>  
>>> <https://groups.google.com/d/msgid/web2py/ccaf7e88-5332-473d-bc2b-b2c2e6ee8933%40googlegroups.com?utm_medium=email&utm_source=footer>
>>> .
>>>
>>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/f80e972b-90b3-49b4-a251-9a80b47367b2%40googlegroups.com.


[web2py] How to call other (and retrieve data/dictionnary ... ) web2py applications from within a web2py application

2020-06-22 Thread L c
Hello,

there is an item on this subject however the links do not work anymore. Is 
there a simple, functional recipe to this question.
Thank you in advance
PS: I've looked in the book and I can't find a clear answer.

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/76c5e8d9-9f87-4d2a-a24c-07c04cb25880o%40googlegroups.com.


[web2py] Re: html e-mail newsletter

2020-07-01 Thread L c
Hello,

The url http://www.web2pyslices.com/main/slices/take_slice/69 

 
is no longer available. I need an example , do you have some ?
Thank you


Le samedi 6 mars 2010 09:47:19 UTC+1, annet a écrit :
>
> From this article I learned how to code an html e-mail newsletter:
>
> http://articles.sitepoint.com/article/code-html-email-newsletters
>
> Now I would like to send this newsletter from within a Web2py CRM
> application. I searched the group for how to instructions but I didn't
> find anything useful. I tried the link in this post:
>
>
> http://groups.google.com/group/web2py/browse_thread/thread/83ee213ce5d3db0c/2ba13207adf09e57?lnk=gst&q=html+email#2ba13207adf09e57
>
> but that resulted in an unable to connect warning. I tried the link to
> the wiki from Web2py's homepage but that resulted in an internal
> error.
>
> I hope one of you could provide me with detailed instructions of how
> to send an html e-mail newsletter from a Web2py application.
>
>
> Kind regards,
>
> Annet.
>
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/d68f98ea-d5f7-4cfa-80b0-a33f4917c6cdo%40googlegroups.com.