-
UK VPS Advice
I was just hoping a few people who already have a VPS and are happy with the service would share their experience and recommendations.... ?
-
UK VPS Advice
Thanks for the reply wesh, I visited your site a few times, first thing I always notice is how fast it loads, very impressive. Although you are offering a specific service, speed and quality focussed, I find your prices completely unfeasible considering I am very happy with the service I have now on standard sites, which makes up the bulk of what I host. I would love to host my sites with you but at 4 times the price its not even an option at the moment. (also your 'hosting/plancompare.php' prices don't seem to match your 'hosting/index.php' prices, I know you changed your prices recently)
-
UK VPS Advice
Ladies and Gentlemen, A while ago I posted on this board looking for some advice on reseller hosting, I got some good feedback and in the end I went with cyberhostpro.com so far I am very happy with the service, the outsourced 'live' help is a bit hit and miss, but any problems they can't help with, or any issues I have sent directly have always been answered by the "managing director", Chirs in super fast time, usually in about an hour, even on weekends! I'm a web designer, and I have recently begun developing for Magento, and my current reseller account does struggle a bit. I have also bee trying to do a few more interesting things which I couldn't do on my reseller account so have set up my PC as a server which is working OK...for testing. These things combined, I am considering stepping up onto a VPS, obviously my first post of call was cyberhostpro but to be honest I really don't find their VPS as competitively priced as some others I have seen. So, my query, if you have had any particularly good/bad experiences with a VPS host then please share. If you represent a web host, please check that you can compete with cyberhostpro before linking to your own site (cyberhost are charging £20p/m for 512mb RAM, 40Gb Storage, 450Gb Bandwidth) Over to you...
-
UK Webhost Advice....Why is there no definitive list!?
OK so I am a web designer.... http://www.thomseddon.co.uk But I only work part time because I am also a student. These factors combined means that I want a nice cheap host for my limited number of clients. At the moment I use 000 Webhost, its free, a little slow, and won't work with Magneto, but otherwise brilliant value for money! When searching for a web host I feel truly bombarded with different companies, and it seems every "impartial" list I find is quite the opposite, and veils its blatant preferential sponsorship ranking quite poorly. Initially I was drawn to justhosts, but after reading reviews I have become wary. Now i am favouring Evo Host or Fast Vision?
-
Free or cheap web hosting and doamin
You can get a free domain from a new scheme run by Google and a few others called "Getting British Business Online" (GBBO) see: http://www.gbbo.co.uk/ I have used 000 Webhost's free service and as far as I can tell its brilliant. The only limitation I have found is that because of their PHP config you can't install Magneto other than that I genuinely believe its better than most paid hosting. See: http://www.######.com/ For some reason they are blocking the name (please someone enlighten me?) Google "000 Webhost" Good Luck
-
Hows that done then?
Yeah that's JavaScript all-right! They have built it on top of JQuery, this is relatively simple to implement.... They way they have done it is not ideal, in my opinion, as it requires the ENTIRE SITE to be loaded in one go (over 1000 lines + jquery etc) so it is a little sluggish to start, the flip-side being that once it is all loaded, its nice and speedy.....
-
div control
ok so i am having some trouble getting my divs in the right place, i have drawn up a basic example to demonstrate here goes: basically i want divs inside divs, and this is proving troublesome here is some basic code i just put down to demonstrate: <html> <style type="text/css"> <!-- #wrapper { width: 500px; margin: auto; text-align: center; } #left { float: left; } #right { float: right; } --> </style> </head> <div id="wrapper">text in wrapper <div id="left">left</div> <div id="right">right</div> </div> </html> (i have made the styles inside rather than extrnally for ease) and im expecting to have a box 500px wid with 2 boxes inside it but this is what i get: (you can only just see it lol) i have put the "wrapper text" in to illustrate it position tia