Anyone install drupal on http://www.ovh.com/fr/?
Greetz

Comments

matkeane’s picture

Hi,

A client I work with has had about a dozen sites running on one of their dedicated servers for the last 9 months. Very few problems, and support has been responsive on the few occasions we've had to contact them. Not sure about their shared hosting or VPS offers, but I'm going to find out shortly.

kamdroop’s picture

It doesn't look like they have cPanel. Fantastico makes installing Drupal pretty simple. You should be fine so long as you have PHP/MySQL!

--
See the best drupal hosting providers on the Internet.

matkeane’s picture

Nope, no cPanel - but they do have their own admin pages which offer something similar. And while they don't have one-click installs of Drupal, they do offer nice tools like Subversion and shell access on their entry-level packages.

P.S. No affiliation to OVH, just a reasonably satisfied customer.

oskar_calvo’s picture

Hello.

I'm trying to install Drupal with Clean url but I can not. They don't work with mod_rewrite, they use their own module: Mod_ORT, ORT (Ovh Redirect Technology).

Someone get clean url in ovh hosting? and How can i get it?

I have tray to copy/paste the drupal example for .htaccess:

 RewriteEngine on
   RewriteBase /
   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]

But I don't get nothing.

Thanks

Oskar

konrad_m’s picture

For me the above settings are working on a simple OVH hosting (shared server).

kind regards,

konrad

gmourmant’s picture

Don't forget to identify the sub repertory if necessary

This has been working with ovh :

RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /mysitedirectory/index.php?q=$1 [L,QSA]
RewriteBase /mysitedirectory

Good luck.

Gaetan

cybernostra’s picture

thank you for the trick / merci pour l'astuce