similar to: Good and Bad Experiences with Hosting Companies

Displaying 20 results from an estimated 6000 matches similar to: "Good and Bad Experiences with Hosting Companies"

2006 Jun 27
5
Rails cronjob?
I want to be able to write a script in Ruby which regularly consumes an XML feed from a fixed source, re-formats it, produces a large file for web delivery, and updates a database with the contained information. It''s simple - just running a script from a cron job, and some basic data manipulation... But I''d prefer to use the Rails database mapping constructs than roll my
2006 May 12
9
Version control for deployment?
If I can get root access, I''ll use version control for deployment as well... It beats ftp and scp hands down for speed. Setting up a repository on a remote server means I get automatic off-site backup as part of the development cycle, and deployment/site update is as simple as a three word command line entry. Small changes on remote test sites can be made with Vim (or your *nix
2006 Jun 01
9
More flexible file column?
The file column plug-in is great, but there is a problem with it. Well, two... But the other is well documented now. :^) Consider a time when you''ve created a CMS for a client and it''s been in use for over a year. Say 1500+ images have been uploaded so far. Now the client comes back with a simple request... ''Can you change the thumbnail size to 80/90, rather than
2007 May 10
3
New Centos User - Yum Repositories Question
I've been using Red Hat and its derivatives since RH4.2. I use Fedora Core 6 for all of my desktop machines, but I decided to go for Centos 5 for my new colo web server. So I've just taken delivery of a new Centos 5 virtual server from Bytemark (http://bytemark.co.uk/) and I'm trying to get it set up with all the RPMs that I'm used to from FC6. As I understand it, the Centos
2006 May 10
1
model mixin module madness
If I have several models which exhibit the same functionality, it seems makes sense to create a mixin, ''include'' it in each model and save myself some work and repeated code. Where can I define a module which will be available to all models? I can''t seem to find a documented place for them. Alternatively, is there a Rails-standard way of achieving the effect? Ben
2005 Nov 18
7
[OT] Shared hosting for Rails projects
To much of my dissapointment, the uptime on my TxD account does not improve. What alternatives do we have for hosting Rails projects on shared accounts? I would love to keep lighttpd and the level of control I have on TxD but wouldn''t like to spend much more (I am currently on the 25$/month plan). I won''t need much support, but I would love to have subversion
2011 Nov 16
3
plotting a double y axis when x and y lengths differ
Hello All, Many thanks to the help I have received so far. Here is an example data set I hope to plot Data1 Year Data SE 1 2005 2 0.01 2 2006 4 0.01 3 2007 5 0.01 4 2008 2 0.01 5 2009 3 0.01 6 2010 6 0.01 Data2 Year Data SE 1 2006 32 1 2 2007 100 2 3 2008 60 4 4 2009 67 3 5 2010 8 1 Notice Data2 has one less years worth of data than Data1 (which is my
2014 Nov 23
4
Yum installed perl on CentOS 5.11 64 bit
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hello Centos, Is 4:perl-5.8.8-43.el5_11.x86_64 really dependent on the 32 bit perl.i386 4:5.8.8-43.el5_11 as yum is suggesting, or has something got mixed up on the system? yum install perl Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: repo.bigstepcloud.com * epel: mirror.bytemark.co.uk * extras:
2013 Feb 28
4
sending of password did not succeed
Hi Today I have upgraded my Debian server from lenny to squeeze and my email stopped working. I am using Dovecot 1.2.15 with exim4. Exim4 is working and mail is being delivered to the mailboxes - /home/ didm.co.uk/peter/Maildir/new etc When I try to download emails to my I get "sending of password did not succeed, Mail server mail.didm.co.ukresponded:Authentication failed" and
2009 Nov 03
1
Gem::RemoteFetcher::FetchErro when installing rails
I am trying to install rails on Ubuntu 8.10, and met following errors. Please help me get through.Thanks. root@pierr-desktop:~# gem install rails ERROR: While executing gem ... (Gem::RemoteFetcher::FetchError) bad response 500 (http://gems.rubyforge.vm.bytemark.co.uk/gems/actionpack-2.3.4.gem) #other information root@pierr-desktop:~# ruby -v ruby 1.8.7 (2008-08-11 patchlevel 72) [i486-linux]
2004 Jan 07
0
Frazzled newbie questions
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi there, I'm now the proud owner of an X100P and am struggling to set up a CVS-compiled Asterisk to do my bidding. I checked zaptel/zapata/asterisk out today and pretty much did a straight make install on all packages. So far the only consistent trick I can make it perform is calling from one SIP phone to another. Could I get a bit of
2018 Aug 08
3
Mount URL as cdrom/iso KVM/QEMU
Hi Folks, According to the examples in http://libvirt.org/formatdomain.html#elementsDisks it should be possible to mount an iso /url as a cdrom, the example given is: </disk> <disk type='network' device='cdrom'> <driver name='qemu' type='raw'/> <source protocol="http" name="url_path"> <host
2006 Jul 19
2
UK ISP for RoR?
Can anyone recommend a UK ISP to host my new site? Thanks, Lee. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060719/1d20161a/attachment.html
2009 Feb 12
8
i18n with Rails 2.1
Hi. I''m currently using Rails 2.1. But i want to use i18n to internationalize my rails application. I''m trying to install rails 2.2 using: gem update rails but it gives me an error... Can anyone please suggest..how do I do this??? Thank You. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are
2014 Nov 24
2
Yum installed perl on CentOS 5.11 64 bit
Am 24.11.2014 um 13:35 schrieb Johnny Hughes <johnny at centos.org>: > On 11/23/2014 10:23 AM, Niamh Holding wrote: >> >> Hello Centos, >> >> Is 4:perl-5.8.8-43.el5_11.x86_64 really dependent on the 32 bit perl.i386 >> 4:5.8.8-43.el5_11 as yum is suggesting, or has something got mixed up on >> the system? >> >> yum install perl >>
2006 May 11
1
Mixins
If I want to write a function which will be available to views, I write a helper function in one of the places set aside or that very task by Rails. If I want to write a little suite of functions to be mixed in by a number of model classes (but not all), where do I put them? Plug-ins look like AN answer, but they also seem a little heavyweight for simple, project-specific tasks.
2010 Nov 02
3
R 2.12.0 in Fedora Updates Testing
R 2.12.0 is built now for Fedora and EPEL. It is in "updates-testing" (or it will be within the next 24 hours). I did not do this build for Fedora 12, as that release will be End-Of-Life in a month. In accordance with the new policies on Fedora Updates, these new packages will not be pushed as official updates until they either receive positive testing from users, or sit in
2016 Jun 06
3
problems compiling packages | 3.3.0 | Linux
Apologies if this email is a top post. I'm not sure how to reply to a thread if I'm not subscribed. We recently encountered the same issue that Evan reported on 6/4 and I can confirm that updated to 3.3.0-5 does address the build failure. Will 3.3.0-5 make it into EPEL? If so, do you have any idea when? The current package is breaking our build process and I'm wondering if it's
2006 Jul 05
4
Hosting client applications - part time developer
I do web development outside of work and I have three new projects starting soon from a little brouchureware site to larger applications. I have a personal hosting account with TextDrive that allows me to run 3 domains, this is not going to be big enough to host the apps for my clients. How do other people host Rails sites & apps for their clients? All this talk of VPS solutions etc
2004 Dec 15
2
Bugtracker Karma Hall Of Fame
The Karma Hall Of Fame is now available at: http://bugs.digium.com/karma_halloffame.php Users with negative karma aren't named'n'shamed.. YET.. but congrats to all the users with positive karma on the current list! The list shows all users holding the top 10 karma scores in the system. Right now you need a 12 or above to feature on the list, and there's a boat load of people just