1. Hosting package that supports EUPHORIA?
- Posted by SDPringle Jun 08, 2014
- 1488 views
Does anyone know a web hosting package that will let me run EUPHORIA 4.0 CGI scripts?
2. Re: Hosting package that supports EUPHORIA?
- Posted by jimcbrown (admin) Jun 08, 2014
- 1422 views
Does anyone know a web hosting package that will let me run EUPHORIA 4.0 CGI scripts?
Virtually any that will let you run CGI scripts written in C would support Euphoria 4.0 - this is probably most of them. One that OpenEuphoria used in the past is site5.com IIRC.
Keep in mind that most such sites have strict limits on memory, CPU usage, and number of processes, which bit us back when we used web hosting for this site. We moved to a VPS hosting server to get around those limits. But euweb is a database-intensive application that likes to do things using multiple processes, so this issue may not apply to what you are doing.
3. Re: Hosting package that supports EUPHORIA?
- Posted by SDPringle Jun 08, 2014
- 1416 views
After uploading eui to a web hosting service I use, my EUPHORIA CGI crashes. I am writing a wrapper in perl to investigate. It would be preferable to use a site that already had euphoria installed and tested on it.
4. Re: Hosting package that supports EUPHORIA?
- Posted by ghaberek (admin) Jun 08, 2014
- 1420 views
We moved to a VPS hosting server to get around those limits.
A VPS is definitely recommended. They can be had for cheap if you're on a budget. See my recent posts about offers from LowEndBox.
-Greg
5. Re: Hosting package that supports EUPHORIA?
- Posted by SDPringle Jun 08, 2014
- 1382 views
The math library used and expected by the interpreter is different from what they have over there. It says:
/lib/libm.so.6: version `GLIBC_2.15' not found (required by /home/canadaho/euphoria/bin/eui)
6. Re: Hosting package that supports EUPHORIA?
- Posted by jimcbrown (admin) Jun 08, 2014
- 1467 views
The math library used and expected by the interpreter is different from what they have over there. It says:
/lib/libm.so.6: version `GLIBC_2.15' not found (required by /home/canadaho/euphoria/bin/eui)
What version of libm do they have?
ls /lib/libm-* -d
7. Re: Hosting package that supports EUPHORIA?
- Posted by jimcbrown (admin) Jun 08, 2014
- 1498 views
The math library used and expected by the interpreter is different from what they have over there. It says:
/lib/libm.so.6: version `GLIBC_2.15' not found (required by /home/canadaho/euphoria/bin/eui)
What version of libm do they have?
ls /lib/libm-* -d
If you are using 32bit and it's libm 2.7 or later, I can provide you with a binary eui that should just work.
I'm looking at http://www.tldp.org/HOWTO/Glibc2-HOWTO-6.html and http://www.trevorpounds.com/blog/?tag=symbol-versioning and will get back to you on how to set up a bulid system that builds for the oldest possible glibc.