|
I have followed the instructions on the magento website for installation with WAMP but there are a couple of extentions I was unable to find.
3) Edit apache/conf/httpd.conf change line:
#LoadModule rewrite_module modules/mod_rewrite.so
to
LoadModule rewrite_module modules/mod_rewrite.so
(just remove the # )
DONE.
4) Edit apache/bin/php.ini and php/php.ini (same changes on both files - note, as of XAMPP 1.7.1, you will only have to change php/php.ini) change lines (the first change is not necessary on xampp):
;extension=php_mcrypt.dll
to
extension=php_mcrypt.dll
and changes lines:
COULD NOT FIND THIS.
;extension=php_curl.dll
to
extension=php_curl.dll
(just remove the ; )
DONE.
4a) On WAMP you must also change the following line in apache2/bin/php.ini and php/php.ini changes lines:
;extension=php_pdo_mysql.dll
to
extension=php_pdo_mysql.dll
(just remove the ; )
DONE.
In addition to php_pdo_mysql.dll, you may also need to make sure you are loading:
extension=php_pdo.dll
COULD NOT FIND THIS.
Any help would be much appreciated…
|