step2: Download the latest version of Drupal.
step3:follow this video
Problems while installation
Error1:#1045 - Access denied for user 'root'@'localhost' (using password: NO)
(This error while accessing http://localhost/phpmyadmin)
Solution: Go to
edit the file with the password:
$cfg['Servers'][$i]['password'] = ''; to
$cfg['Servers'][$i]['password'] = 'root';
because mysql password is root.
Error2: Deprecated: Function ereg() is deprecated in
Solution: Go to wamp\www\drupal\includes\file.inc
change ereg in line to mb_ereg to make the line transform into :
i.e,. elseif ($depth >= $min_depth && ereg($mask, $file))
to elseif ($depth >= $min_depth && mb_ereg($mask, $file))
That message appear because if we use latest wamp software that utilize php 5.3.0 where ereg() function is deprecated.
best solution for this case is to Downgrade wamp to previous version or else made above changes.
Error3:Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 16 bytes) in C:\wamp\www\includes\cache.inc on line 33
add this code in .htaccess
#
# Apache/PHP/Drupal settings:
#
php_value memory_limit 96M