Re: [web2py] Re: What is the Salt used in web2py

2013-01-31 Thread hasan alnator
How can i do it without the validate function or what do the validate function do exactly ? am working with an API so am using another language , so i need to do what the validate dose . regards, On Thu, Jan 31, 2013 at 11:16 AM, Vasile Ermicioi wrote: > lets say you want to control manually i

Re: [web2py] How to implement web2py password encryption in php

2013-01-28 Thread hasan alnator
How can i get the version of the application ? On Mon, Jan 28, 2013 at 3:24 PM, Alec Taylor wrote: > What version of web2py have you started your app on? > > On Mon, Jan 28, 2013 at 6:32 PM, hasan alnator > wrote: > > Dear Alen , > > > > but i need to know What

Re: [web2py] How to implement web2py password encryption in php

2013-01-27 Thread hasan alnator
on how to write this in; go onto a PHP mailing-list. > > On Mon, Jan 28, 2013 at 6:08 PM, hasan alnator > wrote: > > Dear Alec, > > > > I tried this but am now getting the same value in the databae : > > > > > echo hash('ripemd160', 'mypasswor

Re: [web2py] How to implement web2py password encryption in php

2013-01-27 Thread hasan alnator
Dear Alec, I tried this but am now getting the same value in the databae : regards, On Mon, Jan 28, 2013 at 10:05 AM, Alec Taylor wrote: > http://php.net/manual/en/function.hash.php > > On Mon, Jan 28, 2013 at 5:59 PM, Hassan Alnatour > wrote: > > Dear ALL , > > > > How can i implement web2p

Re: [web2py] Re: online users in web2py

2012-12-12 Thread hasan alnator
*Perfect * import datetime limit = request.now - datetime.timedelta(minutes=30) query = db.auth_event.time_stamp > limit query &= db.auth_event.description.contains('Logged-') events = db(query).select(db.auth_event.user_id, db.auth_event.description, orderby=db.auth_event.user_id|db.auth_even

Re: [web2py] Re: online users in web2py

2012-12-12 Thread hasan alnator
no i need to know how many users are logged in , am trying to use the auth_event table to track the login and logout events but still i can get it to work like i want, something like this : def online(): online_users = [] for i in db().select(db.auth_event.ALL): get_event = (i.des

Re: [web2py] get table records using vars

2012-12-11 Thread hasan alnator
able('tag',Field('name',length=16),format='%(name)s') > db.define_table('entry', > Field('title',length=64), > # (...) some other fields > Field('tags','list:reference tag')) > > > > 2012/12/11 h

Re: [web2py] get table records using vars

2012-12-11 Thread hasan alnator
'DAL' object has no attribute 'entry' VERSIONweb2py™(2, 1, 1, datetime.datetime(2012, 10, 15, 12, 44, 40), 'stable')PythonPython 2.7.3: C:\Python27\python.exeTRACEBACK 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. Traceback (most recent call last): File "C:\web2py\gluon\restricted.py", line 209, in r

Re: [web2py] Re: Help with db query

2012-11-07 Thread hasan alnator
ue which forces it to match all of the > list instead of any of the list. > > -- Joe B. > > > On Wednesday, November 7, 2012 3:01:58 AM UTC-8, Hassan Alnatour wrote: > >> and i even tried : >> >> items =[] >> items.append(request.args(0)) >> items

Re: [web2py] Re: Help with db query

2012-11-07 Thread hasan alnator
and i even tried : items =[] items.append(request.args(0)) items.append('Both') db( (db.table.Field1 == value) & (db.table.Field2 in items)) regards, On Wed, Nov 7, 2012 at 12:56 PM, hasan alnator wrote: > Dear Joe , > > What i want to do is to have a q

Re: [web2py] Re: Help with db query

2012-11-07 Thread hasan alnator
Dear Joe , What i want to do is to have a query like this : db( (db.table.Field1 == value) & (db.table.Field2 == value or value)) i tried it i get no errors but its now working Regards On Wed, Nov 7, 2012 at 10:10 AM, Joe Barnhart wrote: > I see -- you're right. > > The request.args structur

Re: [web2py] Re: A lot of us are getting the same error , ProgrammingError: Cannot operate on a closed database !!!

2012-10-30 Thread hasan alnator
Dear Massimo , How can i solve this problem ? and am getting this error on application that modules in it is empty !! , some people say that they solved it using connection pooling !! Regards, On Tue, Oct 30, 2012 at 3:20 PM, Massimo Di Pierro < massimo.dipie...@gmail.com> wrote: > This happen

Re: [web2py] Download a CSV file for a table

2012-10-30 Thread hasan alnator
its working now , the problem is i didnt add a response header : response.headers['Content-Type']='application/vnd.ms-excel' regards, On Tue, Oct 30, 2012 at 10:36 AM, Hassan Alnatour < halna...@gardeniatelco.com> wrote: > Dear ALL, > > I have this code for my CMS , am trying to make a butt

Re: [web2py] Re: Dropbox Error : to many values to unpack

2012-10-23 Thread hasan alnator
i am trying this in 2.1.1 regards, On Tue, Oct 23, 2012 at 5:25 PM, Massimo Di Pierro < massimo.dipie...@gmail.com> wrote: > Do you have 2.1.1 or later? There was a bug in this in earlier version. > > > On Tuesday, 23 October 2012 01:31:50 UTC-5, Hassan Alnatour wrote: > >> Dear Massimo , >> >>

Re: [web2py] Re: ProgrammingError: Cannot operate on a closed database

2012-10-22 Thread hasan alnator
ral things, but I am not sure what solved the problem: > >- DAL with pool_size=10 >- All Linux-files got the same rights (755) > > Sorry, I think this is not much help. > > > 2012/10/22 hasan alnator > >> Dear Cliff, >> >> Can you give me more

Re: [web2py] Re: Dropbox Error : to many values to unpack

2012-10-22 Thread hasan alnator
Dear Massimo , i changed it , but now i got this : Traceback (most recent call last): File "C:\web2py\gluon\restricted.py", line 209, in restricted exec ccode in environment File "C:/web2py/applications/dropbox/controllers/default.py"

Re: [web2py] Re: ProgrammingError: Cannot operate on a closed database

2012-10-22 Thread hasan alnator
Dear Cliff, Can you give me more guides on how to apply this ? Best Regards, On Mon, Oct 22, 2012 at 10:30 PM, Cliff Kachinske wrote: > You can install Linux alongside Windows using the dual boot option. That > way you won't have to manually ensure file perms are correct. > > I ran this way

Re: [web2py] Re: Dropbox Error : to many values to unpack

2012-10-22 Thread hasan alnator
Dear Massimo , i got this from the book : from gluon.contrib.login_methods.dropbox_account import use_dropbox use_janrain(auth,filename='private/dropbox.key') mydropbox = auth.settings.login_form http://web2py.com/books/default/chapter/29/14?search=dropbox#Dropbox-API Best Regards, On Mon, O

Re: [web2py] Help With Dropbox idea

2012-10-22 Thread hasan alnator
I Did this : in db.py : from gluon.contrib.login_methods.dropbox_account import DropboxAccount auth.settings.actions_disabled=['register','change_password','request_reset_password'] auth.settings.login_form = DropboxAccount(request,key="",secret="..",access_type="dropbox",login_url =

Re: [web2py] Re: web2py 2.1.1 is OUT!

2012-10-18 Thread hasan alnator
Dear Massimo , That Is great , Thank you a lot ... Best Regards, On Thu, Oct 18, 2012 at 3:34 PM, Massimo Di Pierro < massimo.dipie...@gmail.com> wrote: > I am pretty sure this is solved in 2.1.1. Massimo > > > On Thursday, 18 October 2012 07:27:26 UTC-5, Hassan Alnatour wrote: > >> Dear Mass

Re: [web2py] Re: web2py 2.1.1 is OUT!

2012-10-18 Thread hasan alnator
Dear Massino , the login , i think it was a session problem , when you get applications from the old web2py to the 2.0.9 , the login blow up TRACEBACK 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. Traceback (most recent call last): File

Re: [web2py] Re: Login error in the new web2py

2012-10-11 Thread hasan alnator
Dear Massimo , I tried the nightly build as you said and i still get errors : TRACEBACK 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. 23. 24. 25. 26. 27. Traceback (most recent call last): File "C:\web2py\gluon\main.py", line 565, in wsgibase session._tr

Re: [web2py] Bug With CSV Export and import

2012-10-10 Thread hasan alnator
Dear Simon, What i use the ids in my tables so the ids changed , who can i export and import data in backup/restore mechanism as you said above ? can you give me an example ? regards, On Wed, Oct 10, 2012 at 1:58 AM, hasan alnator wrote: > Dear Massimo, > > i have web2py > Ve

Re: [web2py] Bug With CSV Export and import

2012-10-09 Thread hasan alnator
Dear Massimo, i have web2py Version 1.99.4 (2011-12-14 14:46:14) stable i opend the dal.py and this is what i have in there : def import_from_csv_file(self, ifile, id_map=None, null='', unique='uuid', *args, **kwargs): if id_map is None: id_map={} fo

Re: [web2py] Bug With CSV Export and import

2012-10-09 Thread hasan alnator
Dear Massimo, *i used this to export from the first application : * def export(): db.export_to_csv_file(open('all10082012.csv', 'wb')) return locals() *and to import to the other application i use this :* def importcsv(): db.import_from_csv_file(open('all10082012.csv', 'rb'))

Re: [web2py] Bug With CSV Export and import

2012-10-09 Thread hasan alnator
Dear Massimo , what i want to do is , i have am moving a database using CSV and when i do that the Ids change , cuz its auto generated i think , what can i do to solve this problem , when i move my database the ids changes witch means that everything will change , how can i fix this problem ?

Re: [web2py] Bug With CSV Export and import

2012-10-09 Thread hasan alnator
Dear ALL , i reviewed the CSV files the exports seems fine but when importing the data the ids are the order of the data inserted , how can we fix this ? Best Regards, Hasan alnatour On Tue, Oct 9, 2012 at 6:12 PM, Hassan Alnatour wrote: > Dear ALL , > > when exporting all the tables as CSV ,

Re: [web2py] Re: Send emails using my own domain

2012-10-09 Thread hasan alnator
Dear lyn2py, Can you tell us how did you fix it ? Regards, On Tue, Oct 9, 2012 at 3:58 PM, lyn2py wrote: > Thanks David. I managed to fix it! > > > On Tuesday, October 9, 2012 8:07:57 PM UTC+8, David Marko wrote: >> >> Do you see any error message in web2py or it seems like it has been sent >>

Re: [web2py] Re: Login error in the new web2py

2012-09-28 Thread hasan alnator
Dear Massimo , i will try it now , but what is the difference between the stable version and the nightly build ? Best Regards, Hassan Alnatour On Fri, Sep 28, 2012 at 7:10 PM, Massimo Di Pierro < massimo.dipie...@gmail.com> wrote: > Can you try the web2py nightly build? > > > On Friday, 28 S

Re: [web2py] Re: Login error in the new web2py

2012-09-28 Thread hasan alnator
Dear Massimo , i am getting this not in just on of my apps , and am not storing anything in the session , the only thing using it is the login and i keep getting this error when the user tries to login .. Best Regards, Hassan Alnatour On Fri, Sep 28, 2012 at 7:39 AM, Massimo Di Pierro < ma

Re: [web2py] unrecoverable internal error

2012-09-27 Thread hasan alnator
Dear Richard , I have restarted the apache and the error is gone , but still i didnt understand the error . Best Regards, On Thu, Sep 27, 2012 at 4:10 PM, Richard Vézina wrote: > When I get this error, it is generally caused by wrong files owner. > > chown -R www-data.www-data web2py > > Ric

Re: [web2py] Re: Apache Error Please Help

2012-09-26 Thread hasan alnator
Dear Massimo , the app ward wasn't there , so that was making an error . thank you i fixed everything now .. Regards, On Wed, Sep 26, 2012 at 4:53 PM, Massimo Di Pierro < massimo.dipie...@gmail.com> wrote: > I think you have an invalid router configuration. Can you show it to us? > It mentio

Re: [web2py] Return Compile error

2012-09-26 Thread hasan alnator
return ''' %s: {{for i in db().select(db.News.ALL):}} {{i.EnglishTitle}} {{pass}} ''' % (column,table[column].label,) On Wed, Sep 26, 2012 at 11:30 AM, Hassan Alnatour < halna...@gardeniatelco.com> wrote: > Dear ALL, > > I am trying to return a div that has a select with option from

Re: [web2py] Send Email After Registration

2012-09-21 Thread hasan alnator
Sorry i mean in db.py : auth.settings.register_next = URL('index',vars={'msg':'welcome'}) Best Regards, On Fri, Sep 21, 2012 at 5:21 PM, hasan alnator wrote: > Dear Yebach , > > in db.py : > > auth.settings.register_next = URL('Welcome&#x

Re: [web2py] Send Email After Registration

2012-09-21 Thread hasan alnator
On Friday, September 21, 2012 8:10:58 AM UTC+2, Alec Taylor wrote: > >> Throw in a decorator to that function >> >> @auth.requires_login() >> >> On Fri, Sep 21, 2012 at 12:15 AM, hasan alnator >> wrote: >> > Dear Yebach , >> > >> > Are you

Re: [web2py] Send Email After Registration

2012-09-20 Thread hasan alnator
Thursday, September 20, 2012 11:15:31 AM UTC+2, Alec Taylor wrote: > >> Nicely done. >> >> On Thu, Sep 20, 2012 at 7:13 PM, hasan alnator >> wrote: >> > Ok I DID it like this : >> > >> > auth.settings.register_next = URL('Welcome&#x

Re: [web2py] Send Email After Registration

2012-09-20 Thread hasan alnator
rs={'lan':'En'}) else: redirect('index') Best Regards, On Thu, Sep 20, 2012 at 11:09 AM, hasan alnator wrote: > Dear Alec , > > I Dont want email verification , i just want to send an email that says > welcome . > > Best Regards, > --

Re: [web2py] CAPTCHA and reCAPTCHA in registration form

2012-09-20 Thread hasan alnator
Dear Alec , I DID that , but whats next , how will i apply it to my registration form ? On Thu, Sep 20, 2012 at 11:06 AM, Alec Taylor wrote: > Go to the reCAPTCHA page and generate yourself a public and private key > pair. > > http://www.google.com/recaptcha > > On Thu, Sep 20, 2012 at 6:04

Re: [web2py] Send Email After Registration

2012-09-20 Thread hasan alnator
Dear Alec , I Dont want email verification , i just want to send an email that says welcome . Best Regards, --

Re: [web2py] LOAD Ajax

2012-09-13 Thread hasan alnator
Still having the same problem , what should i do ? On Mon, Sep 10, 2012 at 2:10 PM, tomasz bandura wrote: > try LOAD() with extension=False > > > 2012/9/10 Hassan Alnatour > > > > >> Dear ALL , >> >> i am having problems when i use the LOAD() in the page.load if i add >> any CSS with imag

Re: [web2py] XML Webservice

2012-09-05 Thread hasan alnator
ur wrote: >>>> >>>> Dear ALec , >>>> >>>> when i go to the link i gave you before , i can see some XML data but i dont understand what is the viewing problem you are talking about ? and why wold a table filed interrupter Viewing as XML as long as i am

Re: [web2py] XML Webservice

2012-09-05 Thread hasan alnator
table filed interrupter Viewing as XML as long as i am returning an >> object that has all the date ? >> >> Best Regards, >> >> On Sun, Sep 2, 2012 at 12:47 PM, hasan alnator > > wrote: >> >>> Dear ALec , >>> >>> when i go to the link

Re: [web2py] XML Webservice

2012-09-04 Thread hasan alnator
, 2012 at 12:47 PM, hasan alnator wrote: > Dear ALec , > > when i go to the link i gave you before , i can see some XML data but i > dont understand what is the viewing problem you are talking about ? and why > wold a table filed interrupter Viewing as XML as long as i am returning a

Re: [web2py] XML Webservice

2012-09-02 Thread hasan alnator
, 2012 at 12:42 PM, Alec Taylor wrote: > Hmm, try lower-case 'description'. > > Otherwise not sure what's causing the XML viewer problem. > > Also nowadays JSON is prefered over XML, as it's much less verbose; > thus has a much lower overhead > > O

Re: [web2py] XML Webservice

2012-09-02 Thread hasan alnator
editor.widget)) db.define_table('services',Field('title'),Field('Description','text',length=99,default="Description Will Be Soon Provided",widget=ckeditor.widget)) On Sun, Sep 2, 2012 at 12:36 PM, Alec Taylor wrote: > Yeah, th

Re: [web2py] XML Webservice

2012-09-02 Thread hasan alnator
Dear Alec , Is the the right way : in the controller i added >> def call(): session.forget() return service() @service.run def xmlservice(): solutoins = db().select(db.solutions.ALL) return locals() then i get this : http://gardeniatelco.com/call/xml/xmlservice On Sun, Sep

Re: [web2py] Re: Using ssl certificate

2012-08-23 Thread hasan alnator
Dear Danny , My operating system is windows but am using apache with it , what do you think is the best way , now i really dont understand ssl alot and i sow that i can buy an ssl two , so can you help me a bit to understand it and how to use it , now what i know is that it is user to enable th

Re: [web2py] Connecting with database that has tables in it

2012-08-13 Thread hasan alnator
gt; On Mon, Aug 13, 2012 at 7:15 AM, hasan alnator > wrote: > >> Dear ALL , >> >> So i can use sql server without defining tables , and if i want to use it >> , after i make the connection string i can use db.executesql("RAW SQL") >> ?? is that true ?? &g

Re: [web2py] Connecting with database that has tables in it

2012-08-13 Thread hasan alnator
Dear ALL , So i can use sql server without defining tables , and if i want to use it , after i make the connection string i can use db.executesql("RAW SQL") ?? is that true ?? best regards, On Mon, Aug 13, 2012 at 4:16 AM, pbreit wrote: > In order to use DAL query syntax, you have to def

Re: [web2py] Re: Import SCV Button

2012-07-30 Thread hasan alnator
, Alec Taylor wrote: > http://www.web2py.com/AlterEgo/default/show/196 > > On Mon, Jul 30, 2012 at 5:36 PM, hasan alnator > wrote: > > Dear Massimo , > > > > This is great , thank you ... but as i told you above , i want the > user to > > download a csv file fo

Re: [web2py] Re: Import SCV Button

2012-07-30 Thread hasan alnator
Dear Massimo , This is great , thank you ... but as i told you above , i want the user to download a csv file for a table .. so it export not import , like the one you have on the appadmin the 'Export CSV button' , thank you for your help Best Regards, On Sun, Jul 29, 2012 at 8:38 AM, M

Re: [web2py] Re: Is Vars Bad for SEO?

2012-07-30 Thread hasan alnator
Dear Pbreit, My URls was like this >>> *Domain.com/Video/1* but now i changed everything like this >>>*Domain.com/Video/Guitar/Lesson1/1 * as i know that using Vars or query strings are bad for SEO and that the Spider ignores it , so do you think this will be effective ? Best Regards,

Re: [web2py] Re: Import SCV Button

2012-07-29 Thread hasan alnator
Thank you a lot massimo but what is tempfile and how can i give it a certain table to import ?? Best Regards, On Sun, Jul 29, 2012 at 5:14 AM, Massimo Di Pierro < massimo.dipie...@gmail.com> wrote: > In view: > download all > > In controller > > def download_all(): > import tempfile >

Re: [web2py] Re: db query not working

2012-07-11 Thread hasan alnator
Where ?? On Wed, Jul 11, 2012 at 6:00 PM, Jonathan Lundell wrote: > On 11 Jul 2012, at 7:25 AM, Jonathan Lundell wrote: > > > > On 11 Jul 2012, at 7:19 AM, hasan alnator wrote: > >> ohh thank you Jonathan its working now , but can you tell me why ? i > dont understa

Re: [web2py] Re: db query not working

2012-07-11 Thread hasan alnator
ohh thank you Jonathan its working now , but can you tell me why ? i dont understand On Wed, Jul 11, 2012 at 5:14 PM, Jonathan Lundell wrote: > On 11 Jul 2012, at 7:09 AM, hasan alnator wrote: > > Dear David, > > the '&' is not supported when i use it i get this : &g

Re: [web2py] Re: db query not working

2012-07-11 Thread hasan alnator
Dear David, the '&' is not supported when i use it i get this : unsupported operand type(s) for &: 'str' and 'Field' On Wed, Jul 11, 2012 at 1:41 PM, David Marko wrote: > Should not this ... > video = db(db.Videos.Video_Type == "XXX" and db.Videos.Teacher == > "xx").select(db.Videos.ALL) >

Re: [web2py] Re: Error with Janrain integration

2012-07-01 Thread hasan alnator
Dear Massimo, when anyone is logged in using Janrain and use any "a href" that is when a normal link like this "http://www.site.com/test"; the user loges out automatically but if i use a link using the URL() it works fine , why is that ?? Regards, On Mon, Jul 2, 2012 at 1:21 AM, Massimo Di Pie

Re: [web2py] csv button

2012-06-17 Thread hasan alnator
can you explain some more please ? best regards, On Sun, Jun 17, 2012 at 9:20 PM, Cornelius Koelbel < cornelius.koel...@lsexperts.de> wrote: > Am 17.06.2012 18:50, schrieb Hassan Alnatour: > > Dear ALL , > > > > How can i create a button that create a csv file for a cretin table ? > > > > >

Re: [web2py] Multiple level database diagram

2012-06-11 Thread hasan alnator
I think some simple queries nothing complex , i will just sort every level by its parent .

Re: [web2py] web2py interactive console

2012-06-06 Thread hasan alnator
Oh thank you , it working now

Re: [web2py] translation from php to python

2012-06-05 Thread hasan alnator
Sure python ! is there another way , am sorry i dont understand php and i dont know what md5 is , am trying to use a payment gateway but all examples are in php , anyone can help me with this two ?? create a page in my website that receives some variables that are fetched in the URL , the* fi

Re: [web2py] translation from php to python

2012-06-05 Thread hasan alnator
Dear Martin , what is the hexdigest() and why did you use it

Re: [web2py] translation from php to python

2012-06-05 Thread hasan alnator
So do you think this is the same : import md5 key = appid + orderid + ordercurr + orderamt + app_secrect_key msignature = md5.new(key);

Re: [web2py] Re: recipes book database mover

2012-05-29 Thread hasan alnator
Dear Massimo ,, the image attached is the error i keep getting in the shell .. regards, <>

Re: [web2py] time event

2012-05-21 Thread hasan alnator
But if i want a website to do that forever , i just need to go to the shell i do python web2py.py -K yourapp one time

Re: [web2py] time event

2012-05-21 Thread hasan alnator
Can you Please Show me An Example Or Something , I cant understand it Best Regards,

Re: [web2py] time event

2012-05-21 Thread hasan alnator
But this is experimental !! i need somthing done before On Mon, May 21, 2012 at 3:21 PM, Manuele Pesenti wrote: > Il 21/05/2012 14:14, Hassan Alnatour ha scritto: > > Dear ALL, >> >> How can let my web2py application send an email every day at 12 pm ?? >> > > try read this... > > http://web2py

Re: [web2py] Re: Copying Date From Sqlite to a Mysql database

2012-05-01 Thread hasan alnator
Can you tell me some more about it how do i use it ?? and i want to use web2py and would this take all the recordes and stuff in the database ?

Re: [web2py] Re: default value for upload Fields

2012-04-12 Thread hasan alnator
Massimo , still its now working , i did what you told me and it got me the name of the image in the upload folder but it didnt work

Re: [web2py] Re: default value for upload Fields

2012-04-11 Thread hasan alnator
No Villas , i tried it , its not working , now as i know , the value that a browse button takes is a path and i tried to pass it a path but still its not working On Wed, Apr 11, 2012 at 4:57 PM, villas wrote: > Maybe should be: > > Field('Cover','upload',default=URL('static','images',args=[

Re: [web2py] Re: creating a shopping cart using session

2012-04-10 Thread hasan alnator
The problem is that i dont have payments .. All payment are on delivary On Apr 10, 2012 4:21 PM, "pbreit" wrote: > Either way, you know the shopper is finished when they go to check out and > pay. Maybe you mean, when do you delete the records from the DB? I would > just leave them there. It is g

Re: [web2py] Re: creating a shopping cart using session

2012-04-10 Thread hasan alnator
if i use the DB how would i know if the user finished shopping , and if i want to use session how do i add items to it ?

Re: [web2py] Re: browse path

2012-04-09 Thread hasan alnator
I cant becouse it on the admin side now it like when u try to upload a file u click on browes in normal cases it will open a window showing your folders but on what i am talking about it opens a folder on the server that the website is hosted on .. So that when they want to upload a very large fi

[web2py] viewing a uploaded video

2011-07-22 Thread hasan alnator
Hello , am trying to view an uploaded video using the mediaplayer in the plugin wiki but i dont know why its not playing anything out of the static folder :: {{=plugin_wiki.widget('mediaplayer',src='/SQLFORMS_AND_UPLOAD/uploads/ person.image. 94758e04f2f20187.4a7175657279202d20416a6178205475746f

[web2py] Re: blogs

2011-07-22 Thread hasan alnator
NO , i dont get any errors but can u show me an example of but using a video in the upload folder thank you .

[web2py] blogs

2011-07-22 Thread hasan alnator
hello guys , am trying to build a blogs website but i want to have a video and image upload in every post so its not just text but i dont know how to use an uploaded file in the pages and i tryed to use flash video plugin it dosent see any video out of the static folder .. please help me guys