php - phpmyadmin shows blank screen after change of password in xamp -


i have xamp installed in windows 8.

apache:ports:- 444,8081 mysql:ports:-3306.

yesterday changed phpmyadin password through http://localhost:8081/security/index.php.

so username :root , password :qwerty

phpmyadmin authentification:cookie (saved in (file: e:\xamp\security\security\mysqlrootpasswd.txt)).

xampp directory protection (.htaccess)

username:balram password:qwerty file: e:\xamp\security\security\xamppdirpasswd.txt)

but cannot access phpmyadmin shows blank screen.

following config.inc.php values:

/* authentication type , info */ $cfg['servers'][$i]['auth_type']     = 'cookie';  // authentication method (config, http or cookie based) // authentication method (config, http or cookie based) $cfg['servers'][$i]['user'] = 'root'; $cfg['servers'][$i]['password'] = 'qwerty'; $cfg['servers'][$i]['extension'] = 'mysqli'; $cfg['servers'][$i]['allownopassword'] = true; $cfg['lang'] = ''; 

error logs

apache: [tue mar 31 22:01:07.006981 2015] [mpm_winnt:notice] [pid 4356:tid 324] ah00364: child: worker threads have exited.

[tue mar 31 22:01:07.059012 2015] [mpm_winnt:notice] [pid 6780:tid 436]           ah00430: parent: child process 4356 exited successfully.  [tue mar 31 22:01:10.891319 2015] [ssl:warn] [pid 6860:tid 436] ah01909: www.example.com:443:0 server certificate not include id matches server name [tue mar 31 22:01:11.368110 2015] [ssl:warn] [pid 6860:tid 436] ah01909: www.example.com:443:0 server certificate not include id matches server name [tue mar 31 22:01:11.471185 2015] [mpm_winnt:notice] [pid 6860:tid 436] ah00455: apache/2.4.10 (win32) openssl/1.0.1i php/5.6.3 configured -- resuming normal operations [tue mar 31 22:01:11.471185 2015] [mpm_winnt:notice] [pid 6860:tid 436] ah00456: apache lounge vc11 server built: jul 17 2014 11:50:08 [tue mar 31 22:01:11.471185 2015] [core:notice] [pid 6860:tid 436] ah00094: command line: 'e:\\xamp\\apache\\bin\\httpd.exe -d e:/xamp/apache' [tue mar 31 22:01:11.475158 2015] [mpm_winnt:notice] [pid 6860:tid 436] ah00418: parent: created child process 2184 [tue mar 31 22:01:12.882847 2015] [ssl:warn] [pid 2184:tid 332] ah01909: www.example.com:443:0 server certificate not include id matches server name [tue mar 31 22:01:13.380254 2015] [ssl:warn] [pid 2184:tid 332] ah01909: www.example.com:443:0 server certificate not include id matches server name [tue mar 31 22:01:13.486309 2015] [mpm_winnt:notice] [pid 2184:tid 332] ah00354: child: starting 150 worker threads. 

mysql error log:

2015-03-31 22:01:12 1344 [note] plugin 'federated' disabled. 2015-03-31 22:01:12 9c8 innodb: warning: using innodb_additional_mem_pool_size deprecated. option may removed in future releases, option innodb_use_sys_malloc , innodb's internal memory allocator. 2015-03-31 22:01:12 1344 [note] innodb: using atomics ref count buffer pool pages 2015-03-31 22:01:12 1344 [note] innodb: innodb memory heap disabled 2015-03-31 22:01:12 1344 [note] innodb: mutexes , rw_locks use windows interlocked functions 2015-03-31 22:01:12 1344 [note] innodb: memory barrier not used 2015-03-31 22:01:12 1344 [note] innodb: compressed tables use zlib 1.2.3 2015-03-31 22:01:12 1344 [note] innodb: not using cpu crc32 instructions 2015-03-31 22:01:12 1344 [note] innodb: initializing buffer pool, size = 16.0m 2015-03-31 22:01:12 1344 [note] innodb: completed initialization of buffer pool 2015-03-31 22:01:12 1344 [note] innodb: highest supported file format barracuda. 2015-03-31 22:01:13 1344 [note] innodb: 128 rollback segment(s) active. 2015-03-31 22:01:13 1344 [note] innodb: waiting purge start 2015-03-31 22:01:13 1344 [note] innodb: 5.6.21 started; log sequence number 1743245 2015-03-31 22:01:13 1344 [note] server hostname (bind-address): '*'; port: 3306 2015-03-31 22:01:13 1344 [note] ipv6 available. 2015-03-31 22:01:13 1344 [note]   - '::' resolves '::'; 2015-03-31 22:01:13 1344 [note] server socket created on ip: '::'. 2015-03-31 22:01:13 1344 [note] event scheduler: loaded 0 events 2015-03-31 22:01:13 1344 [note] e:\xamp\mysql\bin\mysqld.exe: ready   connections. version: '5.6.21'  socket: ''  port: 3306  mysql community server (gpl) 

i tried manipulating php.config.inc.php no avail. steps given on websites didn't solve problem

thanks in advance, balram


Comments

Popular posts from this blog

cakephp - simple blog with croogo -

How to group boxplot outliers in gnuplot -

bash - Performing variable substitution in a string -