hi, i just fix my problem by my self with spending about 12hours experimenting.Please go to Php.ini file and replace the extentions with the following.extension=php_mbstring.dllextension=php_bz2.dllextension=php_curl.dllextension=php_dba.dllextension=php_dbase.dllextension=php_exif.dllextension=php_fdf.dllextension=php_filepro.dllextension=php_gd2.dllextension=php_gettext.dllextension=php_ifx.dllextension=php_imap.dllextension=php_interbase.dllextension=php_ldap.dllextension=php_mbstring.dllextension=php_mcrypt.dllextension=php_mhash.dllextension=php_mime_magic.dllextension=php_ming.dllextension=php_mssql.dllextension=php_msql.dllextension=php_mysql.dllextension=php_oci8.dllextension=php_openssl.dllextension=php_oracle.dllextension=php_pgsql.dllextension=php_shmop.dllextension=php_snmp.dllextension=php_sockets.dllextension=php_sqlite.dllextension=php_sybase_ct.dllextension=php_tidy.dllextension=php_xmlrpc.dllextension=php_xsl.dllextension=php_pdo.dllextension=php_pdo_sqlite.dllextension=php_winbinder.dllThis Solved my problem and i hope this can solve your Problem too.I can send you Fixed php.ini file in email if you need one.its my whole php.ini file that you can replace and i hope problem will be solved.[PHP];;;;;;;;;;;;;;;;;;;; About php.ini ;;;;;;;;;;;;;;;;;;;;; PHP's initialization file, generally called php.ini, is responsible for; configuring many of the aspects of PHP's behavior.; PHP attempts to find and load this configuration from a number of locations.; The following is a summary of its search order:; 1. SAPI module specific location.; 2. The PHPRC environment variable. (As of PHP 5.2.0); 3. A number of predefined registry keys on Windows (As of PHP 5.2.0); 4. Current working directory (except CLI); 5. The web server's directory (for SAPI modules), or directory of PHP; (otherwise in Windows); 6. The directory from the --with-config-file-path compile time option, or the; Windows directory (C:\windows or C:\winnt); See the PHP docs for more specific information.; http://php.net/configuration.file; The syntax of the file is extremely simple. Whitespace and Lines; beginning with a semicolon are silently ignored (as you probably guessed).; Section headers (e.g. [Foo]) are also silently ignored, even though; they might mean something in the future. ; Directives following the section heading [PATH=/www/mysite] only; apply to PHP files in the /www/mysite directory. Directives; following the section heading [HOST=www.example.com] only apply to; PHP files served from www.example.com. Directives set in these; special sections cannot be overridden by user-defined INI files or; at runtime. Currently, [PATH=] and [HOST=] sections only work under; CGI/FastCGI.; http://php.net/ini.sections; Directives are specified using the following syntax:; directive = value; Directive names are *case sensitive* - foo=bar is different from FOO=bar.; Directives are variables used to configure PHP or PHP extensions.; There is no name validation. If PHP can't find an expected; directive because it is not set or is mistyped, a default value will be used.; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one; of the INI constants (On, Off, True, False, Yes, No and None) or an expression; (e.g. E_ALL & ~E_NOTICE), a quoted string (