Missing the MySQL extension which is required by WordPress.

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Missing the MySQL extension which is required by WordPress.
# 1  
Old 06-27-2016
Missing the MySQL extension which is required by WordPress.

hi
i started in the apache userdirectory and virtual host
now iwant installtion wordpress in home one of the useres
But this error is
Code:
Your PHP installation appears to be missing the MySQL extension which is required by WordPress.


And the configuration files and other items I was enter username and password & ....
Code:
 service mysqld status
mysqld (pid  24087) is running...


Why is this error? !!!!

---------- Post updated at 09:30 PM ---------- Previous update was at 08:38 PM ----------

problem to be solved
php-mysql not installed
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Homework & Coursework Questions

Mysql missing mysqld.sock (Linux)

I am trying to start a server for a class I am in but... mysql won't start with this error ( ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) ) ---------- Post updated at 03:51 PM ---------- Previous update was at 03:50 PM ---------- ... (2 Replies)
Discussion started by: Slayer939
2 Replies

2. Shell Programming and Scripting

ERROR: Required Parameters Missing

i have modified a korn shell script to include a parameter and i coded the parameter as pSec=$1 pLoopCnt=$2 wheni run the script it gives me an error $ ksh sfs_pcard_load_file.ksh 30 3 ERROR: Required Parameters Missing. USAGE: sfs_pcard_load_file.ksh please help i think i might... (4 Replies)
Discussion started by: wtolentino
4 Replies

3. UNIX and Linux Applications

MySQL missing my.cnf

Hi, SLES11 : I've installed the following MySQL Package: MySQL-client-community-5.1.54-1.sles11.x86_64 MySQL-devel-community-5.1.54-1.sles11.x86_64 MySQL-server-community-5.1.54-1.sles11.x86_64 MySQL-shared-community-5.1.54-1.sles11.x86_64Problem: I don't see any my.cnf file (find / -name... (1 Reply)
Discussion started by: hiddenshadow
1 Replies

4. UNIX for Dummies Questions & Answers

[SOLVED] mysql.sock is missing..

mysql.sock file is missing in /opt/lampp/etc/ is there any backup file available in unix... since without that file .. project is not opening.. reply me as soon as possible ... (19 Replies)
Discussion started by: senkerth
19 Replies

5. UNIX for Dummies Questions & Answers

Mysql my.cnf settings help required

Dear Friends I run my website "www.egully.com" on a dedicated server with a config of memory 8GB and 8GB RAM the CPU load average often shoots from 2-3 to 20-30 and the site becomes extremely slow. On investigation we found a lot of temporary mysql tables are been created which is taking up lot... (0 Replies)
Discussion started by: egully
0 Replies

6. UNIX for Dummies Questions & Answers

Help required on Printing of Numbers, which are missing in the range

Hi Experts, Need help on printing of numbers, which are missing in the range. Pls find the details below Input 1000000002 1000000007 1234007940 1234007946 Output 1000000003 1000000004 1000000005 1000000006 1234007941 (2 Replies)
Discussion started by: krao
2 Replies

7. UNIX and Linux Applications

RandR extension missing

Help! I have a linux box wth vncserver setup in it. Now, the problem is when I'm connected to the linux box via vnc session executing the command in terminal xrandr gives me the following: $ xrandr Xlib: extension "RANDR" missing on display ":1.0". RandR extension missing plus the geometry... (1 Reply)
Discussion started by: etcpasswd
1 Replies

8. Red Hat

Wordpress + Apache,PHP,MySQL = blankpage

Hi, This is my problem: - I install and configure apache,php,mysql-server - configure database on mysql and wp-config od Wordpress - upload files wordpress in to public_html and... i see results "blank page". What is it? Where is problem? (PS. I install and configure wordpress few... (1 Reply)
Discussion started by: gripek
1 Replies

9. UNIX for Advanced & Expert Users

mysql would not start: missing mysql.sock

I recently installed mysql-standard-5.0.21-solaris9-sparc-64bit.pkg on a Solaris 9 machine (SunOS 5.9 Generic_118558-19 sun4u sparc SUNW,Ultra-250). The package installation went very smooth, however, starting mysql is a different story. I get the message below everytime I try to start mysql: #... (2 Replies)
Discussion started by: xnightcrawl
2 Replies

10. UNIX for Advanced & Expert Users

MySQL problem >> missing mysql.sock

MySQL on my server is down.... I figured out that the mysqld process isn't running. When I try to run it, it says it can't find mysql.sock Any suggestions? Here's what I can't do: can't be root don't have physical access (do stuff via SSH) reinstall MySQL (need to keep the current MySQL... (8 Replies)
Discussion started by: _hp_
8 Replies
Login or Register to Ask a Question
MYSQL_SET_CHARSET(3)							 1						      MYSQL_SET_CHARSET(3)

mysql_set_charset - Sets the client character set

SYNOPSIS
Warning This extension is deprecated as of PHP 5.5.0, and will be removed in the future. Instead, the MySQLi or PDO_MySQL extension should be used. See also MySQL: choosing an API guide and related FAQ for more information. Alternatives to this function include: omysqli_set_charset(3) oPDO: Add charset to the connection string, such as charset=utf8 bool mysql_set_charset (string $charset, [resource $link_identifier = NULL]) DESCRIPTION
Sets the default character set for the current connection. o $charset - A valid character set name. o $ link_identifier -The MySQL connection. If the link identifier is not specified, the last link opened by mysql_connect(3) is assumed. If no such link is found, it will try to create one as if mysql_connect(3) was called with no arguments. If no connection is found or established, an E_WARNING level error is generated. Returns TRUE on success or FALSE on failure. Note This function requires MySQL 5.0.7 or later. Note This is the preferred way to change the charset. Using mysql_query(3) to set it (such as SET NAMES utf8) is not recommended. See the MySQL character set concepts section for more information. mysql_client_encoding(3), Setting character sets in MySQL, List of character sets that MySQL supports. PHP Documentation Group MYSQL_SET_CHARSET(3)