I am trying to move from a local server to an online server (see error at http://earlysignup.com/ ). I read online that I should use

yum install php-pdo

I tried this and I get "No package php-pdo available.". Can anyone set me straight?

link|improve this question
Find out what the package name is for your distro. – Lightness Races in Orbit Aug 15 '11 at 15:41
What distro are you running. php-pdo is what fedora uses (and thus probably redhat, centos). – Paul Aug 15 '11 at 15:58
feedback

1 Answer

  1. Open php.ini. The file can be located in the /etc/php5/cgi folder, if you're on a Linux server, or some close variation thereof.
  2. Uncomment the line extension=php_pdo.dll (or php_pdo.so if you're on a Linux machine)
  3. Uncomment the line (depending on the database you are using) extension=php_pdo_mysql.dll (or php_mysql_pdo.so)
  4. Restart your webserver and reload the page in question
link|improve this answer
Those famous DLLs for Linux. – Lightness Races in Orbit Aug 15 '11 at 15:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.