This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Download file real time
#7
(24.11.2020, 07:34)admin Wrote: .lp file is not a script, it's a Lua file that only the web server can run. It should be uploaded via FTP to the user directory using apps username. If the file is named csv.lp then the URL will be http://LM_IP/user/csv.lp

Code:
<?
-- set headers for csv file download
setdlheader('text/csv; charset=utf-8', 'report', 'csv')
-- generate csv here
value=grp.tag("consumption")

filename = string.format('consumption.csv', os.date('%d-%m-%Y-%H-%M'))

a={}

for index, id in ipairs(value) do
  name=id["name"]
 
  meter=id["data"]
 
  consumption=name .."," .. meter
 
  a[index]=consumi
  log(a)
end

csv = a
result, err = io.writefile (filename, csv)

-- output to the user
print(csv)

I generate file as above without success. Is it correct the procedure? Thanks.
Reply


Messages In This Thread
Download file real time - by Domoticatorino - 19.11.2020, 21:11
RE: Download file real time - by admin - 20.11.2020, 06:57
RE: Download file real time - by Daniel - 20.11.2020, 08:26
RE: Download file real time - by admin - 24.11.2020, 07:34
RE: Download file real time - by Domoticatorino - 24.11.2020, 09:09
RE: Download file real time - by admin - 24.11.2020, 09:16
RE: Download file real time - by admin - 24.11.2020, 09:56
RE: Download file real time - by admin - 24.11.2020, 10:33

Forum Jump: