Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

compiling mogoose with lua #409

Closed
GoogleCodeExporter opened this issue Nov 13, 2015 · 5 comments
Closed

compiling mogoose with lua #409

GoogleCodeExporter opened this issue Nov 13, 2015 · 5 comments

Comments

@GoogleCodeExporter
Copy link

I am using mongoose 4.1 api with my c application on an arm based linux system. 
I was using few python scripts and other cgi scripts by adding the extension as 
-> "cgi_pattern", "**.cgi$|**.pl$|**.php$",

Want to use a lua script now just for testing , what are the changes should I 
make to the mongoose.c or mongoose.h files ? 

What is the expected output? What do you see instead?
The mongoose should run the lua script instead it just shows the whole script 
text when I try to run. 

What version of the product are you using? On what operating system?
mongoose 4.1 running on linux

Please provide any additional information below.
I dont run mongoose independently , it is part of my application , i just 
import mongoose.h and mongoose.c into my project. 
So how can I also modify it to use lua with mongoose now.


Original issue reported on code.google.com by prajwalc...@gmail.com on 7 Aug 2014 at 7:43

@GoogleCodeExporter
Copy link
Author

Are you going to use Lua script as CGI?
Is your embedded application commercial or open-source?

Original comment by valenok on 7 Aug 2014 at 7:48

@GoogleCodeExporter
Copy link
Author

Its open source and doing it for a university project.
I want to use lua as CGI 

Original comment by prajwalc...@gmail.com on 7 Aug 2014 at 7:58

@GoogleCodeExporter
Copy link
Author

No change for mongoose is needed.
Rename your Lua script to have ".cgi" extension.

Original comment by valenok on 7 Aug 2014 at 8:25

  • Changed state: Fixed

@GoogleCodeExporter
Copy link
Author

I am using the example script primenumbers.lp just for testing but it gives an 
error like this

Error 500: Internal Server Error
CGI program sent malformed or too big (>16384 bytes) HTTP headers: []

here is the script 
HTTP/1.0 200 OK
Content-Type: text/html

<html>
  <p>Prime numbers from 0 to 100, calculated by Lua:</p>
 <?
    function is_prime(n)
      if n <= 0 then return false end
      if n <= 2 then return true end
      if (n % 2 == 0) then return false end
      for i = 3, n / 2, 2 do
        if (n % i == 0) then return false end
      end
      return true
    end

    for i = 1, 100 do
      if is_prime(i) then mg.write('<span>' .. i .. '</span> ') end
    end

 ?>

 <p>Reading POST data from Lua (click submit):</p>
 <form method="POST" ><input type="text" name="t1"/><input type="submit"></form>

 <pre>
   POST data: [<?
      local post_data = ''
      if mg.request_info.request_method == 'POST' then
        post_data = mg.read()
      end
      mg.write(post_data)
    ?>]
   request method: [<? mg.write(mg.request_info.request_method) ?>]
   IP/port: [<? mg.write(mg.request_info.remote_ip, ':',
                         mg.request_info.remote_port) ?>]
   URI: [<? mg.write(mg.request_info.uri) ?>]
   HTTP version [<? mg.write(mg.request_info.http_version) ?>]
   HEADERS:
   <?
     for name, value in pairs(mg.request_info.http_headers) do
       mg.write(name, ':', value, '\n')
     end
   ?>
</pre>
</html>


Original comment by prajwalc...@gmail.com on 7 Aug 2014 at 8:52

@GoogleCodeExporter
Copy link
Author

I used the file with extension .cgi also

Original comment by prajwalc...@gmail.com on 7 Aug 2014 at 8:53

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant