1. BBCMF Call for Testers
- Posted by c.k.lester <euphoric at ck?e?ter.com> Sep 07, 2007
- 612 views
- Last edited Sep 08, 2007
Euphoria can power your web site. http://www.cklester.com/euphoria/bbcmf/ Read my latest blog about it for more details.
2. Re: BBCMF Call for Testers
- Posted by ChrisBurch3 <crylex at gm?il.com> Sep 08, 2007
- 556 views
c.k.lester wrote: > > Euphoria can power your web site. > > <a > href="http://www.cklester.com/euphoria/bbcmf/">http://www.cklester.com/euphoria/bbcmf/</a> > > Read my latest blog about it for more details. CK 4 eu cgi president! Chris
3. Re: BBCMF Call for Testers
- Posted by Matt Lewis <matthewwalkerlewis at g?ail.?om> Sep 08, 2007
- 561 views
c.k.lester wrote: > > Euphoria can power your web site. > > http://www.cklester.com/euphoria/bbcmf/ > > Read my latest blog about it for more details. Congratulations! Looks awesome. What's the setup (webserver, etc)? IOW, what would we need from a host to be able to use this? Matt
4. Re: BBCMF Call for Testers
- Posted by c.k.lester <euphoric at ?klester.c?m> Sep 08, 2007
- 571 views
Matt Lewis wrote: > c.k.lester wrote: > > Euphoria can power your web site. > > <a > > href="http://www.cklester.com/euphoria/bbcmf/">http://www.cklester.com/euphoria/bbcmf/</a> > > Read my latest blog about it for more details. > Congratulations! Looks awesome. What's the setup (webserver, etc)? > IOW, what would we need from a host to be able to use this? OS: Any (Windows, Linux, FreeBSD)* Server: Apache (but will probably work with any) Host: allows CGI, mods to htaccess I develop it at home on a Windows system and my host is FreeBSD. I'm assuming it will work on Linux. * Currently, the system can't send emails from Windows. I'm using sendmail on FreeBSD and don't know what to use for Windows. I'll have to figure out what to do about that. Other than that, I don't know of any limitations. There are tons of hosts out there that will be able to host a BBCMF install. I'm using Dot5Hosting right now, but I can't give a recommendation due to issues I've had with them over time (slow, downtime, etc.). I doubt any free hosts will host a BBCMF install due to the custom CGI you have to run, but most of the cheap ones will. And, as I've said in the past, I don't know how well this will scale. It's got a caching system that should enable high volume... but who knows? I'd like somebody to explore the possibility of translating and compiling the system. The problem with that is the plugin system is dynamic, so each time you plugged or unplugged a plugin, you'd have to retranslate/recompile. Just stuff to think about. P.S. I updated the blog entry to give credit to EuSQL. BBCMF would not have been as easy to create without it. So, thanks! :)
5. Re: BBCMF Call for Testers
- Posted by Gary Shingles <eu at 531??.co.nz> Sep 09, 2007
- 578 views
c.k.lester wrote: > > * Currently, the system can't send emails from Windows. I'm using sendmail > on FreeBSD and don't know what to use for Windows. I'll have to figure > out what to do about that. Other than that, I don't know of any limitations. I use blat (www.blat.net) with something like:
VOID = shellExecuteEx("open", "send.bat", sprintf("%s %s %s %s %s", {last_dumped, subline, getText(txtSMTP), getText(txtEmail), getText(txtFrom)}), 0, SW_MINIMIZE, 0)
Where send.bat is: ------------------------------------------------- :) %1 file :) %2 subject :) %3 smtp server :) %4 to email :) %5 from email rasdial woosh echo email sending with command line: echo %1 %2 %3 %4 %5 %6 %7 %8 %9 echo --- cat %1 | cjpeg -quality 85 > %1.jpg blat filler.txt -to %4 -f %5 -subject %2 -server %3 -attach %1.jpg -base64 -mime ------------------------------------------------- There is a blat.dll which I think can be wrapped (ie a 'send_email' function) but I never persued wrapping it as the batch file worked fine and gave more end user flexibility (eg bringing up the internet connection etc) Gary
6. Re: BBCMF Call for Testers
- Posted by Robert Craig <rds at Rap?dEup?oria.com> Sep 09, 2007
- 573 views
Gary Shingles wrote: > > c.k.lester wrote: > > > > * Currently, the system can't send emails from Windows. I'm using sendmail > > on FreeBSD and don't know what to use for Windows. I'll have to figure > > out what to do about that. Other than that, I don't know of any limitations. > > I use blat (www.blat.net) with something like: > }}} <eucode> > VOID = shellExecuteEx("open", "send.bat", > sprintf("%s %s %s %s %s", {last_dumped, subline, getText(txtSMTP), > getText(txtEmail), > getText(txtFrom)}), > 0, SW_MINIMIZE, 0) > </eucode> {{{ > > Where send.bat is: > ------------------------------------------------- > :) %1 file > :) %2 subject > :) %3 smtp server > :) %4 to email > :) %5 from email > rasdial woosh > echo email sending with command line: > echo %1 %2 %3 %4 %5 %6 %7 %8 %9 > echo --- > cat %1 | cjpeg -quality 85 > %1.jpg > blat filler.txt -to %4 -f %5 -subject %2 -server %3 -attach %1.jpg -base64 > -mime > ------------------------------------------------- > > There is a blat.dll which I think can be wrapped (ie a 'send_email' function) > but I never persued wrapping it as the batch file worked fine and gave more > end user flexibility (eg bringing up the internet connection etc) I've had success using vmailer.exe on Windows from a Euphoria program. Vmailer works even when the SMTP server requires authentication. Regards, Rob Craig Rapid Deployment Software http://www.RapidEuphoria.com
7. Re: BBCMF Call for Testers
- Posted by c.k.lester <euphoric at ckl?ster.c?m> Sep 09, 2007
- 557 views
Gary Shingles wrote: > c.k.lester wrote: > > * Currently, the system can't send emails from Windows. I'm using sendmail > > on FreeBSD and don't know what to use for Windows. I'll have to figure > > out what to do about that. Other than that, I don't know of any limitations. > > I use blat (www.blat.net) with something like: Oh yeah. Duh, right? I'm using that in another program at work. sheesh. :) Michael Raley's wrapper for blat is here: http://www.rapideuphoria.com/eublat.zip I'll check out Vmailer, too, Rob. Thanks, guys! :)
8. Re: BBCMF Call for Testers
- Posted by Bernie Ryan <xotron at bl?ef?og.com> Sep 10, 2007
- 587 views
Hey Ck: You might be interested in the following link: http://www.wischik.com/lu/programmer/ Take a look at the php web page editor. Bernie My files in archive: WMOTOR, XMOTOR, W32ENGIN, MIXEDLIB, EU_ENGIN, WIN32ERU, WIN32API Can be downloaded here: http://www.rapideuphoria.com/cgi-bin/asearch.exu?dos=on&win=on&lnx=on&gen=on&keywords=bernie+ryan
9. Re: BBCMF Call for Testers
- Posted by Craig Welch <euphoriah at cw?lc?.org> Sep 14, 2007
- 618 views
Matt Lewis wrote: > Congratulations! Looks awesome. What's the setup (webserver, etc)? > IOW, what would we need from a host to be able to use this? I've set up a free test environment for anyone that wants to test this or other aspects of CGI programming: http://www.wazu.jp/hosting/euphoria.html -- Craig