|
#1
|
|||
|
|||
|
How about Ruby on Rails support along with php and everything else you offer?
|
|
#2
|
|||
|
|||
|
I second that notion.
|
|
#3
|
||||
|
||||
|
just read about ruby and it sounds amazing, would love to try it
|
|
#4
|
|||
|
|||
|
I've been too busy but, I'd like to learn Perl mainly so I can make IRC bots.
__________________
|
|
#5
|
||||
|
||||
|
yeah perl is pretty useful to know since its used a fair bit in linux and the like but to be honest i think there are far greater languages to spend your time learning but its all down to preferences
there are a huge number of different programming languages out at the moment and even more tools and stuff to learn. Ruby on rails is a really nice language i recommend anyone who is pretty new to programming to try learning it because it is shockingly simple and very powerful, however it does have its disadvantages are probably gonna mean that i will avoid learning instead ive been looking into creating AJAX applications which are really cool but i don't think my javascript skills are upto scratch enough to begin working on something like that yet
|
|
#6
|
|||
|
|||
JavaScript and Java are two differant things. Java is a full blown programming language, AJAX I would guess are done in Java. Which is more like a C. JavaScript is for small client-side scripts. I'd like to learn JavaScript better though so I can create client-server side web apps. Such as small text based games.
__________________
|
|
#7
|
||||
|
||||
|
Thats kinda what an AJAX system does. Google maps is a great example of the power of AJAX as when you move the map around rather then have to continue reloading the page the new data requests are sent via javascript to the web server then sent back and displayed. It works very simply however, the downside is that error checking and performance are very difficult to implement.
|
|
#8
|
|||
|
|||
|
We can add Ruby on Rails to Dedicated servers, I have one with it but right now it just conflicts with Cpanel/WHM in several ways that don't make it really a good choice for a shared environment, as well as the fast CGI modules and no graphical interfact to start new projects on. Hopefully Cpanel/WHM will add it or third party support will emerge, until then a dedicated servers is the best route.
Btw, Ruby on Rails is amazing for what you can put together in a short time. |
|
#9
|
|||
|
|||
|
It has been a little while since the last post requesting Ruby on Rails support on shared hosts. Any chance that it will be happening in the near future??
|
|
#10
|
|||
|
|||
|
Quote:
|
|
#11
|
|||
|
|||
|
Ruby on Rails is not a language - Ruby is a language, Rails is a framework. It's really not a good idea to host Rails next to cPanel and PHP, because first of all, Rails is really optimized for the included webserver for one, but also, it pretty much requires ssh. Then, of course, Rails requires you to know Ruby, which most people don't. All this is not to mention the fact that simpler is always better for a server with multiple vhosts, especially one that runs a lot of processes, which may or may not include the necessary libraries today.
The are similar RAD frameworks for Python (like Turbogear, Django, or Twisted), PHP (like Cake or BinaryCloud), and even Perl (like Mason). Rails is all the rage these days, and I'd love to play with it on a public site, but honestly, there are smarter choices for a hosting company running a business. As a general rule for web frameworks, never build on something that you cannot maintain yourself. Just a couple pennies from a new Hostgatorite... |
|
#12
|
|||
|
|||
|
Quote:
If you want to use AJAX, include this in your page header: Code:
<script type="text/javascript">
var xmlhttp=false;
/*@cc_on @*/
/*@if (@_jscript_version >= 5)
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
xmlhttp = false;
}
}
@end @*/
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp = new XMLHttpRequest();
}
</script>
Then you need a function, like maybe this: Code:
function ajaxMe() {
var serverfile ="file.txt"; //file to get
xmlhttp.open("GET",myfile,true); //open the pipe, get the file
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4) {
var mydiv = document.getElementById('divToUpdate');
mydiv.innerHTML = xmlhttp.responseText; //replace the div
}
}
xmlhttp.send(null)
}
All you really need to do is insert a button or something with an onclick="ajaxMe()" and you're good to go - you've got AJAX running. When you start playing with CSS styles and visibility, you can make this REALLY useful. Adam S |
|
#13
|
|||
|
|||
|
The issue is what customers want. Rails is fast becoming a preferred development framework eating into PHP share. CPanel has nothing to do with this. How does PHP have anything to do with CPanel? It doesn't.
Rails is production quality and stable as of 1.0 release. Plenty of hosting companies already have put Rails on their platforms including your competition! Already I'm disappointed that PHP 5.x isn't supported by HostGator. PHP 5.x offers 400% performance improvement and you guys are too shy to support it. I see this speed improvement on my systems at work. Nobody is going to be writing PHP 4.x code anymore - thats stupid. I hate when companies start complaining about not supporting something because "its Cpanel's fault". You either get with the times, or get left behind. |
|
#14
|
|||
|
|||
|
Quote:
Also, RoR is not ready to go yet, its web server sucks and so far its integration with Apache is not great either. I've installed it on my personal dedicated server and it does conflict with Cpanel/WHM in some ways, nothing big but nothing ordinary customers should have to deal with. |
|
#15
|
|||
|
|||
|
I also would like to request ruby support, I am very interested to use it on an upcoming project.
|
|
#16
|
|||
|
|||
|
Same here!
And while we're at it, what about subversion ?
|
|
#17
|
||||
|
||||
|
Hell yeah! I'd love subversion too! Any chance?
|
|
#18
|
|||
|
|||
|
Ruby support will be great... please add support for Ruby on our Hosting Plans!!!!!!!!!!
|
|
#19
|
|||
|
|||
|
It amazes me reading that RoR is not ready to go yet. So all the servers supporting it out there or Apple including it in next Mac OSX release are just amateurs?
|
|
#20
|
||||
|
||||
|
It amazes me that you have that attitude in your post without doing a search first. Rails and SVN are installed and working on the servers.
__________________
Follow me on Twitter! http://twitter.com/mrw |
|
#21
|
||||
|
||||
|
Quote:
Can I host my repos? or only install external repos as in the case of RoR? |
|
#22
|
||||
|
||||
|
As far as I know, you can't currently use the HG svn repos as an external repo to your own files and projects. Unfortunately, it seems to exist for the sole purpose of supporting RoR.
__________________
Follow me on Twitter! http://twitter.com/mrw |
|
#23
|
|||
|
|||
|
RubyonRails... great! But it's only half the battle:
To quote Agile Web Development with Rails (the Ruby-Rails bible): "CGI is definitely not the place you want to be. [...] Thankfully, Apache is also capable of running FastCGI." CGI is so inefficient, HostGator is just bogging down it's server loads. May I suggest either (1) FastCGI or (2) Mongrel Clusters via Apache deferral (even betta!) |
![]() |
| Bookmarks |
«
Previous Thread
|
Next Thread
»
| Thread Tools | |
|
|
All times are GMT -5. The time now is 01:17 AM.




JavaScript and Java are two differant things. Java is a full blown programming language, AJAX I would guess are done in Java. Which is more like a C. JavaScript is for small client-side scripts. I'd like to learn JavaScript better though so I can create client-server side web apps. Such as small text based games.





