Mobile app version of vmapp.org
Login or Join
Sims2060225

: Easy way to determine if a client's web host supports/allows creating SQL databases? This is a very particular question, but I'm working on establishing a criteria at my company for when we

@Sims2060225

Posted in: #Database #Sql #Tools #WebHosting

This is a very particular question, but I'm working on establishing a criteria at my company for when we bring new web clients aboard. Our sales team is looking for an effective way to determine whether or not we can install certain software on a client's web server before we sell the client on that service.

We help optimize a lot of our client's sites by installing blogs and CMSes to their existing site, but in order to install these blogs we need to be able to create MySQL databases through the client's hosting backend.

Of course many big name hosts like GoDaddy and Dreamhost give the user complete access to tools like phpMyAdmin that allow me to create a Wordpress database, for example, so that I can get Wordpress working on their site.

Many of our clients however are Ecommerce sites and get their hosting through more locked-down companies that don't offer the ability to utilize SQL databases or other features necessary to complete some of these tasks for clients.

It's an odd question, but is there a simple way to determine if a certain web server or hosting company has the ability to use SQL databases with their customers? Finding out the name of the hosting company and then checking if the company offers SQL databases would be one way to do it, but I want to know if there is another solution or web tool or chart on the internet that could help us determine this information.

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Sims2060225

2 Comments

Sorted by latest first Latest Oldest Best

 

@Kevin317

Finding out the name of the hosting company and then checking if the company offers SQL databases would be one way to do it

Honestly, I'd personally just let this be the way to to it. Unless you can provide some more reason why it shouldn't be.

I think your question is overly limiting. Sure, you might come away with knowing how to check if you're allowed to create databases, but there are plenty of other things you might also need to know, like what version of PHP(or some other language) is installed, whether those languages have whatever extension available, whether there's a usable mail server in place, and so on. Why collect a bunch of little abstract tests like this rather than just asking "Who's your host?" and then finding out what you need?

You say that these clients may not even know who their host is, but if you're setting client criteria this just shouldn't be acceptable. Follow it through: what if something goes wrong? You're going to wait until then to figure out who needs to be talked to? Make them figure this out up front, so that at least you know.

10% popularity Vote Up Vote Down


 

@Caterina187

I'd just have them send you the result of issuing this command on their database server:

create database temp;

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme