Web Dev Questions That Don't Need Their Own Thread v4
5,001 replies, posted
[QUOTE=AndrewPH;44504874]I would agree if they were one of those dime-a-dozen TCadmin hosts, but they aren't. They put a lot of effort into their services.
For example, their custom gameserver control panel Xylona.[/QUOTE]
But we're talking about web hosting, not game hosting. Their needs are very different and so are the clients.
[QUOTE=supersnail11;44504880]But we're talking about web hosting, not game hosting. Their needs are very different and so are the clients.[/QUOTE]
Elaborate on how an unmanaged VPS from a GSP is any different from an unmanaged VPS from anywhere else. I'm not quite sure I understand your view.
[QUOTE=AndrewPH;44504923]Elaborate on how an unmanaged VPS from a GSP is any different from an unmanaged VPS from anywhere else. I'm not quite sure I understand your view.[/QUOTE]
If you buy a VPS from a good VPS host, you're going to get all the VPS hosting expertise that comes with it - they know how to setup and run a VPS, and they can do it well. If you buy a VPS from a GSP, you're going to get all their GSP hosting experience applied to VPSes, even though you can't do that.
[QUOTE=rilez;44503824]Yeah, was looking at different VPS providers. Anyone here use Linode? That was the one I was most interested in. Would appreciate suggestions though.
[url]https://www.linode.com/[/url]
I like that I can choose my distro & they have a management app for mobile phones.[/QUOTE]
Using [URL="http://afterburst.com/"]Afterburst[/URL] myself by suggestions from here.
[QUOTE=supersnail11;44505217]If you buy a VPS from a good VPS host, you're going to get all the VPS hosting expertise that comes with it - they know how to setup and run a VPS, and they can do it well. If you buy a VPS from a GSP, you're going to get all their GSP hosting experience applied to VPSes, even though you can't do that.[/QUOTE]
Ah. Like GSPs who decide "hey, vpss are a good source of munny, openvz makes vpss right? time to look at a tutorial!!"?
have you considered [url]http://www.nosupportvpshosting.com/[/url]
I've had great experiences with RamNode. Good prices, friendly support, and good uptime. Plus I've never had any problems with them, aside from the rare unexpected downtime.
[QUOTE=rilez;44503824]Yeah, was looking at different VPS providers. Anyone here use Linode? That was the one I was most interested in. Would appreciate suggestions though.
[url]https://www.linode.com/[/url]
I like that I can choose my distro & they have a management app for mobile phones.[/QUOTE]
[url]http://afterburst.com[/url]
made by an FPer
[url]https://digitalocean.com[/url]
pretty good
I like the look of both of those. Who runs Afterburst?
I think Fizzdar
Just as a side note, Afterburst uses OpenVZ visualization, and Digital Ocean uses KVM. Arch Linux has known issues with OpenVZ.
I would really avoid using Arch Linux as a distribution for a web server.
We are using Arch for production, so its easier to keep everything the same. It's plenty for the size of our project. DigitalOcean seems perfect for us.
[url]http://ramnode.com[/url] is also run by a Facepuncher fyi.
Also I would not _ever_ recommend using Arch as a production web server. It is the best damned distro for desktops, but Arch would be my last choice for a production server. The two biggest reasons for this are its forte. Being rolling release and having bleeding edge packages.
I seriously suggest using Debian (derivatives included) or CentOS.
CentOS is the best simply because of its reputation as a webserver which makes everyone write their webserver tutorials while using a CentOS machine.
[QUOTE=AndrewPH;44503713]MariaDB is to MySQL like Nginx is like Apache.
[/QUOTE]
Also just thought I'd clear this up. (No offense to you, AndrewPH, just wanting to get the correct information out there)
That comparison is not correct in the slightest. MariaDB is a [i]drop-in[/i] replacement for MySQL. This means that you can 98% of the time freely switch between the two data stores without touching a line of code.
This is obviously not the case with Apache and Nginx. If you want to switch you'll have to deal with migrating configurations and rewriting any dependent code.
New question that does not need a separate thread:
Should I learn Ruby I'm already ok with php and JS? Like I find the higher level stuff hard, so would this maybe pay off when doing more advanced stuff?
Yeah it's popular, so it'll be a benefit to know it
JS-Less Tabs
[url]http://jsfiddle.net/LQRyr/[/url]
Looking to remove[code] <div class='.content'>[/code] and replace it in CSS with [code]
section *:not(label):not(input) [/code]
at which point it fucks up.
[url]http://jsfiddle.net/bD44F/1/[/url]
That is the main issue, I also wish to be able to move the <label> or have links in a navbar elsewhere in the code/site which will switch the content for me. But I think this is another can of worms
Is this possible?
[QUOTE=lkymky;44510934]JS-Less Tabs
[url]http://jsfiddle.net/LQRyr/[/url]
Looking to remove[code] <div class='.content'>[/code] and replace it in CSS with [code]
section *:not(label):not(input) [/code]
at which point it fucks up.
[url]http://jsfiddle.net/bD44F/1/[/url]
That is the main issue, I also wish to be able to move the <label> or have links in a navbar elsewhere in the code/site which will switch the content for me. But I think this is another can of worms
Is this possible?[/QUOTE]
you need the .content or some sort of element surrounding your content.
[QUOTE=lkymky;44510934]Is this possible?[/QUOTE]
[URL="http://jsfiddle.net/bD44F/2/"]Yeah.[/URL]
Added:
[CODE][type=radio]:not(:checked) ~ p {
display: none;
}[/CODE]
[QUOTE=jung3o;44511038]you need the .content or some sort of element surrounding your content.[/QUOTE]
no.
[QUOTE=lkymky;44510934]JS-Less Tabs
[url]http://jsfiddle.net/LQRyr/[/url]
Looking to remove[code] <div class='.content'>[/code] and replace it in CSS with [code]
section *:not(label):not(input) [/code]
at which point it fucks up.
[url]http://jsfiddle.net/bD44F/1/[/url]
That is the main issue, I also wish to be able to move the <label> or have links in a navbar elsewhere in the code/site which will switch the content for me. But I think this is another can of worms
Is this possible?[/QUOTE]
I had to run your CSS through an unminifier to make it readable.
Updated here [url]http://jsfiddle.net/LQRyr/4/[/url] if anyone wants to look at it.
I don't think you're going to be able to switch the tab inside the content field without JavaScript, if it is possible it would use anchors.
[QUOTE=TrinityX;44511043][URL="http://jsfiddle.net/bD44F/2/"]Yeah.[/URL]
Added:
[CODE][type=radio]:not(:checked) ~ p {
display: none;
}[/CODE]
no.[/QUOTE]
that has no transitions
[editline]10th April 2014[/editline]
also he request to take out the content class. what if you put some other div (not a paragraph element)
[url]http://jsfiddle.net/LQRyr/5/[/url]
Soo I'm pretty competent in coding HTML and CSS now and I need to learn PHP for work.. what would be the best way to do this? some guy is going to lend me a book he used to learn it (in a few weeks), Is there something I could do project wise at home? from say code taught to me by code academy?
Our website uses magento and as far as I'm aware it just uses the above.. HTML, CSS, PHP and has a MySQL database.
Magento's code is absolute shit. Just fyi.
[QUOTE=jetboy;44511268]Magento's code is absolute shit. Just fyi.[/QUOTE]
I know, I don't do any coding on there personally but the IT guy we use is saying I should learn PHP. I only use the backend of the website through a GUI and updating products etc is slow as fuck.
[QUOTE=xianlee;44511234]Soo I'm pretty competent in coding HTML and CSS now and I need to learn PHP for work.. what would be the best way to do this? some guy is going to lend me a book he used to learn it (in a few weeks), Is there something I could do project wise at home? from say code taught to me by code academy?
Our website uses magento and as far as I'm aware it just uses the above.. HTML, CSS, PHP and has a MySQL database.[/QUOTE]
Use codecademy, it's great because it's interactive so you'll learn a lot from it
[QUOTE=djjkxbox360;44511311]Use codecademy, it's great because it's interactive so you'll learn a lot from it[/QUOTE]
Is there like stuff I can do to combine css, html and php?
[QUOTE=xianlee;44511350]Is there like stuff I can do to combine css, html and php?[/QUOTE]
Well CSS and HTML are already combined, you could try creating some PHP functions and place the output in the HTML. If you want run PHP on your computer, you will need a local web server, I use XAMPP for this
[url]http://stackoverflow.com/questions/23000757/creating-divs-and-getting-content-dynamically-using-javascript[/url]
can anyone help with this pls
Sorry, you need to Log In to post a reply to this thread.