with the last 2 issues:
The first is (PhpMyAdmin):
The mbstring PHP extension was not found and you seem to be using a multibyte charset. Without the mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.
I checked the Config.inc.php and I don't know whats missing I have it configured to do the following plus utf-8 is our convention to be used.
(from Config.inc.php)
$cfg['AllowAnywhereRecoding'] = true;
$cfg['DefaultCharset'] = 'utf-8';
$cfg['RecodingEngine'] = 'iconv';
$cfg['IconvExtraParams'] = '//TRANSLIT';
The second is (PHP):
When enabling an extension in php.ini for "php_mbstring.dll" I get the following error output from phpinfo.php
"PHP Warning: PHP Startup: Unable to load dynamic library 'C:\PHP\ext\php_mbstring.dll' - Access is denied. in Unknown on line 0 "
What I don't get is why its "Access is Denied" I mean the files are in C:\php\ext in (extension_dir = "C:\PHP\ext")
[mbstring]
; language for internal character representation.
mbstring.language = English
; internal/script encoding.
; Some encoding cannot work as internal encoding.
; (e.g. SJIS, BIG5, ISO-2022-*)
mbstring.internal_encoding = UTF-8
; http input encoding.
mbstring.http_input = auto
; http output encoding. mb_output_handler must be
; registered as output buffer to function
mbstring.http_output = UTF-8
; enable automatic encoding translation according to
; mbstring.internal_encoding setting. Input chars are
; converted to internal encoding by setting this to On.
; Note: Do _not_ use automatic encoding translation for
; portable libs/applications.
mbstring.encoding_translation = on
; automatic encoding detection order.
; auto means
mbstring.detect_order = AUTO
; substitute_character used when character cannot be converted
; one from another
mbstring.substitute_character = none;
; overload(replace) single byte functions by mbstring functions.
; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
; etc. Possible values are 0,1,2,4 or combination of them.
; For example, 7 for overload everything.
; 0: No overload
; 1: Overload mail() function
; 2: Overload str*() functions
; 4: Overload ereg*() functions
mbstring.func_overload = 0
Please someone help me regarding this



