Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.
Posted by: shiva2211 (---.254.71.182.airtel.in)
Date: November 23, 2011 03:46PM

Hi!

I am a new to wamp server

I currently installed wamp 2.2 version on my windows xp SP3 system
[Apache version 2.2.21
PHP version 5.3.8
MySQL version 5.5.16]

Have set up my password on config.inc.php, while I try to login to phpMyAdmin I get the following error:
Cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly.


mysql error log

111123 18:27:13 [Note] Plugin 'FEDERATED' is disabled.
111123 18:27:13 InnoDB: The InnoDB memory heap is disabled
111123 18:27:13 InnoDB: Mutexes and rw_locks use Windows interlocked functions
111123 18:27:13 InnoDB: Compressed tables use zlib 1.2.3
111123 18:27:14 InnoDB: Initializing buffer pool, size = 128.0M
111123 18:27:14 InnoDB: Completed initialization of buffer pool
111123 18:27:14 InnoDB: highest supported file format is Barracuda.
111123 18:27:14 InnoDB: Waiting for the background threads to start
111123 18:27:15 InnoDB: 1.1.8 started; log sequence number 1595675
111123 18:27:16 [Note] Event Scheduler: Loaded 0 events
111123 18:27:16 [Note] wampmysqld: ready for connections.
Version: '5.5.16-log' socket: '' port: 3306 MySQL Community Server (GPL)



config.inc.php:

<?php

$cfg['blowfish_secret'] = '4c02d5e1af2b86.89214560';

/*
* Servers configuration
*/
$i = 0;
/*
* First server
*/
$i++;
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
/* Select mysqli if your server has it */
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['AllowNoPassword'] = false;

/* rajk - for blobstreaming */
$cfg['Servers'][$i]['bs_garbage_threshold'] = 50;
$cfg['Servers'][$i]['bs_repository_threshold'] = '32M';
$cfg['Servers'][$i]['bs_temp_blob_timeout'] = 600;
$cfg['Servers'][$i]['bs_temp_log_threshold'] = '32M';

/* User for advanced features */
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
/* Advanced phpMyAdmin features */
$cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
$cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
$cfg['Servers'][$i]['relation'] = 'pma_relation';
$cfg['Servers'][$i]['table_info'] = 'pma_table_info';
$cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
$cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
$cfg['Servers'][$i]['column_info'] = 'pma_column_info';
$cfg['Servers'][$i]['history'] = 'pma_history';
$cfg['Servers'][$i]['tracking'] = 'pma_tracking';
$cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';

/*
* End of servers configuration
*/

/*
* Directories for saving/loading files from server
*/
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';

?>


Please help.

Sorry, only registered users may post in this forum.