wraithdu Posted May 12, 2011 Author Share Posted May 12, 2011 Ok, I fixed it. FYI, the fix needs to be added to Web.au3 then integrated into AuCGI.au3 before compilation. I used a regex instead of your conditional. Link to comment Share on other sites More sharing options...
Ghost21 Posted May 13, 2011 Share Posted May 13, 2011 How big of application can be run on this ?? I have one thats approx . 4000+ lines that I would love to see via web.. Link to comment Share on other sites More sharing options...
JRowe Posted May 18, 2011 Share Posted May 18, 2011 How big of application can be run on this ?? I have one thats approx . 4000+ lines that I would love to see via web..You can run arbitrarily large scripts. If your script runs, then it can be run online.However... having a monolithic central process can hog unnecessary amounts of CPU, but if it's a one-off, used only by you on a private webserver, then it'd be more efficient for you to just use it as is. If you want to have many people use it, then a little work to break it down into smaller scripts would serve you well.I'll be transferring the old files to a newer, more permanent site, so I'll replace the download link (even though everything is still accessible from here.)AutoIt.me is defunct, for now. [center]However, like ninjas, cyber warriors operate in silence.AutoIt Chat Engine (+Chatbot) , Link Grammar for AutoIt , Simple Speech RecognitionArtificial Neural Networks UDF , Bayesian Networks UDF , Pattern Matching UDFTransparent PNG GUI Elements , Au3Irrlicht 2Advanced Mouse Events MonitorGrammar Database GeneratorTransitions & Tweening UDFPoker Hand Evaluator[/center] Link to comment Share on other sites More sharing options...
autoall Posted October 31, 2011 Share Posted October 31, 2011 (edited) Great project! please keep it alive. Is there a tutorial about how to install AUCGI with XAMPP http://www.apachefriends.org/es/xampp.html?? Thanks! Edited October 31, 2011 by autoall Link to comment Share on other sites More sharing options...
Erion Posted November 2, 2011 Share Posted November 2, 2011 Hello, As autoit.me seems to be down, would anyone be so kind to post everything one might need to use AuCGI with Lighttpd? I.e. the latest AuCGI, web.au3, controller, test files, config, etc. Huge thanks. Erion Link to comment Share on other sites More sharing options...
wraithdu Posted November 3, 2011 Author Share Posted November 3, 2011 All the current sources are in the first post. I'll have to add a short tutorial since the other site is down. For now, some searching brought these old results: Link to comment Share on other sites More sharing options...
Erion Posted November 4, 2011 Share Posted November 4, 2011 Hello, Thank you very much. Erion Link to comment Share on other sites More sharing options...
zXarth Posted June 14, 2012 Share Posted June 14, 2012 Hi All, I'm relatively new to the forums here and mostly I do Web Dev stuff, however I have dabbled in the AutoIT world and when I saw the AuCGI I almost fell off my seat! Well Any who, I know it's been quite a while since anyone else has posted, and I'm not sure if anyone has said anything previously, but for anyone who comes looking I've gotten AuCGI to work successfully in my WAMP (apache) setup... Aside from following the instructions already posted all I had to do was add the following code to my httpd.conf file: <Directory "x:/wamp/www/..."> #This is for AutoIT3/AuCGI use... Options +ExecCGI AddHandler cgi-script .au3 </Directory> (replacing 'x' with the drive letter that wamp is installed on, and either removing the '...' at the end of the directory listing to allow the entire Web Directory access to CGI or specifically filling in a folder in the Web directory which you want CGI's to be executed) Thanks guys for the wonderful work!! Link to comment Share on other sites More sharing options...
chipmonger Posted August 15, 2013 Share Posted August 15, 2013 Hi, this seems to be the solution that I'm looking for to serve information to remote users and retrieve their responses. I noticed that there have been few posts regarding this software for two years. Is this still current, or has something else superseded it? Thanks, Chip Link to comment Share on other sites More sharing options...
wraithdu Posted August 15, 2013 Author Share Posted August 15, 2013 Well I haven't looked at this since probably my last post, and I know the referenced website is down. But the attached version is current to what I have locally, so I'd say go for it. arcker did a FastCGI version of this project. I have no experience with it however. '?do=embed' frameborder='0' data-embedContent>> Link to comment Share on other sites More sharing options...
chipmonger Posted August 15, 2013 Share Posted August 15, 2013 Thanks. Will be doing more research, but seems to be the ticket. Will play with it when I can. Chip Link to comment Share on other sites More sharing options...
chipmonger Posted August 15, 2013 Share Posted August 15, 2013 BTW, an archived version of the autoit.me web page is available at http://web.archive.org/web/20100327112514/http://www.autoit.me/ Link to comment Share on other sites More sharing options...
chipmonger Posted August 15, 2013 Share Posted August 15, 2013 I was able to download the AuCGI.zip file, but need the AuCGIFiles.zip archive that contain at least lighttpd-inc.conf, test.web, and Start.bat. Any ideas? Thanks again, Chip Link to comment Share on other sites More sharing options...
MachinistProgrammer Posted August 20, 2013 Share Posted August 20, 2013 Help i couldn't get AuCGIFiles.zip so i edited the config and whenever i try to run a script i get 2013-08-20 12:57:40: (mod_cgi.c.588) cgi died, pid: 7776 All my projects live on github Link to comment Share on other sites More sharing options...
l4tran Posted October 4, 2014 Share Posted October 4, 2014 Anybody with here with Javascript experience? I am using AuCGI along with Google Map API via javascript to write a GPS tracker. I manage to get Google map to display along with a marker when I initialize the javascript. Suppose in the body, I have a new latitude and longitude, how do I pass these variables to marker1 and run marker1.setmap(map) to update the marker? expandcollapse popup<?au3 #NoTrayIcon _standardHeader() ?> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <style type="text/css"> html, body, #map-canvas { height: 100%; margin: 0; padding: 0;} </style> <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key="> </script> <script type="text/javascript"> function initialize() { var useragent = navigator.userAgent; var mapdiv = document.getElementById("map-canvas"); var mapOptions = { center: { lat: 43.61910797367798, lng: -79.55092150602343}, zoom: 11, panControl: false, zoomControl: false, scaleControl: true }; var map = new google.maps.Map(document.getElementById('map-canvas','mapOptions'),mapOptions); var myLatlng = new google.maps.LatLng(43.61910797367798,-79.75092150602343); var marker1 = new google.maps.Marker({ position: myLatlng, map:map, title:"Hello World!" }); if (useragent.indexOf('iPhone') != -1 || useragent.indexOf('Android') != -1 ) { mapdiv.style.width = '600px'; mapdiv.style.height = '800px'; } else { mapdiv.style.width = '100%'; mapdiv.style.height = '100%'; } ;marker1.setMap(map) } google.maps.event.addDomListener(window, 'load', initialize); </script> </head> <body> <form name = "login" action="<?au3 inline($_SCRIPT_NAME) ?>" method="POST"> <center><br><br><br> <input id="user" name="user" value="Username"><br><br> <input id="pwd" name="pwd" value="password" type="password"><br><br> <button name="submit" value="submit">Submit</button> <button>Reset</button> <?au3 If _POST("submit") Then if _POST("user")="Username" and _POST("pwd")="password" Then echo ("works") echo ('<div id="map-canvas"></div>') for $i=1 to 10 sleep(3000) $new_lat=43.61910797367798 $new_lng=-80.75092150602343 + $i ;stuck how to pass these coordinates marker1 and run marker1.setmap(map) Next EndIf EndIf ?> </form> </body></html> Link to comment Share on other sites More sharing options...
topten Posted November 23, 2015 Share Posted November 23, 2015 Hello. Where can I find AuCGIFiles.zip Great thanx in advance! Link to comment Share on other sites More sharing options...
topten Posted November 23, 2015 Share Posted November 23, 2015 I Have found it here https://www.autoitscript.com/forum/topic/66639-webbased-au3-on-lighttd/ Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now