[web2py] Re: where is the path specified that points to python.exe

2022-11-26 Thread Arglanir
sys.executable should be your friend. Le samedi 26 novembre 2022 à 08:42:52 UTC+1, alexg...@gmail.com a écrit : > where is the path specified that points to python.exe? > > Am using Windows source code for For Python 3.7 > -- Resources: - http://web2py.com - http://web2py.com/book

Re: [web2py] Re: Issue password in plain text before sending when login in the website via HTTPS

2022-11-23 Thread Arglanir
-over-https (and see linked duplicate questions) Do you know any website that does hash the password client-side ? Arglanir Le mardi 22 novembre 2022 à 01:20:06 UTC+1, silvia...@gmail.com a écrit : > Thank you, but do you have any suggestions what to do cause our > cybersecurity officer

[web2py] Re: Unable to run web2py_no_console.exe (v2.14.6)

2016-06-14 Thread Arglanir
In the meantime I have updated my launching script in order to start web2py.exe minimized, if web2py_no_console.exe does not create a "web2py.pid" file. Le mardi 14 juin 2016 21:21:22 UTC+2, Arglanir a écrit : > > Thank you. As I said, web2py.exe works. > The goal is to deplo

[web2py] Re: Unable to run web2py_no_console.exe (v2.14.6)

2016-06-14 Thread Arglanir
framework) stay obfuscated. > > > Em segunda-feira, 13 de junho de 2016 17:23:19 UTC-3, Arglanir escreveu: >> >> Hello everyone, >> I just unpacked the last version into an empty folder. Then I try to >> launch using a command line: >> >>-

[web2py] Unable to run web2py_no_console.exe (v2.14.6)

2016-06-13 Thread Arglanir
Hello everyone, I just unpacked the last version into an empty folder. Then I try to launch using a command line: - web2py_no_console.exe - web2py_no_console.exe -p 8003 - web2py_no_console.exe -p 8003 -i 0.0.0.0 - web2py_no_console.exe -p 8003 -i 0.0.0.0 -a -l web2py.log -d

[web2py] Re: Bypassing Opening Dialog in Windows Binary Startup

2015-05-02 Thread Arglanir
I have a custom starting script that I can share: @echo off rem Some variables... set PORT=8002 set pidfile=web2py.pid set mycommand=web2py_no_console.exe set adminpassword=your_password set urltodisplay=http://127.0.0.1:%PORT%/ rem Restarting Web2Py? if exist %pidfile% ( echo Stopping

[web2py] Re: 2.4.7 problems

2013-10-31 Thread Arglanir
Hello everyone, I encountered this problem on 2.2.1 myself, so I checked the trunk source code and it has not moved a lot since. I investigated this problem and found the bug, and thus the correction: https://code.google.com/p/web2py/issues/detail?id=1736#c1 You can now correct if for next

[web2py] Re: Creating a form using a for loop

2013-03-02 Thread Arglanir
I think your compilation error comes from the fact that in Python you cannot have a variable name starting with a number. Try changing the field names of Evaluation table to letter_1_1A... Then remember that only one form can be submitted in HTML, so your controler will be called only for one

[web2py] Re: applying BEAUTIFY to UL in controller

2012-12-14 Thread Arglanir
I think the goal of BEAUTIFY() helper is to nicely display python lists and dicts. See documentation in html.py : class BEAUTIFY(DIV): example:: BEAUTIFY(['a', 'b', {'hello': 'world'}]).xml() 'divtabletrtddiva/div/td/trtrtddivb/div/td/trtrtddivtabletrtd