The mbstring extension is missing.
Posted by: mew721 (---.dhcp.stls.mo.charter.com)
Date: February 26, 2016 04:29PM

Hello,

I am trying to install WampServer and get it up and running. When I try to open the phpMyAdmin, I get the following error:

The mbstring extension is missing. Please check your PHP configuration.

Any assistance would be greatly appreciated.

Options: ReplyQuote
Re: The mbstring extension is missing.
Posted by: Samio (---.dip0.t-ipconnect.de)
Date: February 26, 2016 06:34PM

Hi,
try the following

1. in php.ini file, uncomment the line ";extension=php_mbstring.dll" so... "extension=php_mbstring.dll"

2. is the DLL actually in the extension folder in E:/wamp/bin/php/php5.6.15/ext/ ? or where ever you installed wamp to(the version according to yours) also note "FORWARD slashes"

3. once changes have been made...always restart all services

Options: ReplyQuote
Re: The mbstring extension is missing.
Posted by: Otomatic (Moderator)
Date: February 27, 2016 11:13AM

Hi,

Please answer to: READ BEFORE YOU ASK A QUESTION

---------------------------------------------------------------
Documentation Apache - Documentation PHP - Documentation MySQL - Wampserver install files & addons

Options: ReplyQuote
Fatal error: Uncaught Error: Call to undefined function mysql_connect()
Posted by: georgefernandez (37.211.214.---)
Date: October 22, 2016 01:01PM

I wrote a registration form in PHP below mentioned source code. when I run this code error message is coming
Fatal error: Uncaught Error: Call to undefined function mysql_connect() in C:\wamp64\www\Registration\registration.php on
can you explain why this error is coming.

<?php
mysql_connect("localhost","root",""winking smiley;
mysql_select_db('user_db');

if(isset($_POST['submit'])){

$user_name=$_POST['name'];
$user_pass=$_POST['pass'];
$user_email=$_POST['email'];
echo $user_name;
if($user_name==''){
echo "<script>alert('please input name')</script>";
exit();
}
if($user_pass==''){
echo "<script>alert('please input password')</script>";
exit();
}

if($user_email==''){
echo "<script>alert('please input email')</script>";
exit();
}
}

?>

Options: ReplyQuote


Sorry, only registered users may post in this forum.