[web2py] insecure string pickle version 2.17.1

2018-09-16 Thread Mayra Marticorena
Buenos dias como estan ?

Mediante una migración de una aplicación para pasarla aun sitio web que 
esta en dominio.
Me ha tirado el siguiente error :

[image: Screenshot_1.png] 














Tengo la base corrupta? 

Me podrían ayudar con este tema ?

Esto me paso cuando lo pase a una versiona mas superior de web2py , donde 
en la version 2.14 no me ha dado problema, y por lo visto exiiste un 
controlador nuevo en web2py 2.17 migrator.py que no estaba en las antiguas 
versiones

Saludos.

-- 
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] searching for two options

2015-09-05 Thread Mayra Marticorena
Good afternoon, I tell assemble a search engine where there are two options 
to search by code and description, code works well but the description of 
what can be deduced string, which I can not solve.

peugeot.py


def bieletas():
   if(request.get_vars.buscar):
bieletas= 
db((db.catalogoxtipo.cod_articulo.like('%'+request.get_vars.buscar+'%'))).select()
   try:
bieletas

   except:
bieletas = 
db((db.catalogoxtipo.marca=='Peugeot')&(db.catalogoxtipo.tipo=='Bieletas')).select(db.catalogoxtipo.cod_articulo,
 
db.catalogoxtipo.foto,db.catalogoxtipo.descripcion,orderby="catalogoxtipo.cod_articulo
 
ASC")

   if(request.get_vars.buscar2):
bieletas2= 
db((db.catalogoxtipo.descripcion.like('%'+request.get_vars.buscar2+'%'))).select()
   try:
 bieletas2

   except:
 bieletas2 = 
db((db.catalogoxtipo.marca=='Peugeot')&(db.catalogoxtipo.tipo=='Bieletas')).select(db.catalogoxtipo.cod_articulo,
 
db.catalogoxtipo.foto,db.catalogoxtipo.descripcion,orderby="catalogoxtipo.cod_articulo
 
ASC")

   return dict(bieletas=bieletas,bieletas2=bieletas2)

view

peugeot/abrazaderas.html.


BUSCAR POR CODIGO:
BUSCAR POR DESCRIPCION:


 
Best regards.

-- 
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] AYUDA como ajustar la resolucion de la pagina de web segun el navegador ?

2014-04-15 Thread Mayra Marticorena
hola buen dia , como andan ? estoy teniendo problemas de resolucion en mi 
pagina de web , http://www.distribuidorahenry.com.ar/welcome/default/index 
, si entro en la pc que he utilize para armar esta misma , se ve claramente 
, sin embargo cuando entro con otra pc se ve mal , saltos de pagina e 
margenes etc . Existe un parche , que automaticamente se ajuste a los 
diferentes resoluciones , de los navegadores ? .
Desde ya , muchas gracias !

mayra

-- 
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.