Step by Step Install Drupal on Wamp : Add Domain
After reading my post about howto install drupalĀ in localhost with xampp I receive email from a reader via contactform ask me to post about install drupal on Wamp with other facility such as :
- Fake domain (batikweb.com)
- Clean url feature
- Send Email ability
- VirtualHost support
Well, I try to make his wish come true
Add Domain
I adopt the same way as I use for my tutorial on how to add domain on wordpress.
Download Drupal
Download latest drupal from drupal project.
Save and extract to C:\wamp\www
At the moment I have new folder with name :
drupal-6.14
Rename this folder to drupal .
Setting VirtualHost
Open file :
1. httpd.conf
C:\wamp\bin\apache\Apache2.2.11\conf\httpd.conf
go to line 466 and remove the # in front of the line.
# Virtual hosts
Include conf/extra/httpd-vhosts.conf
Save the file.
2. httpd-vhost.conf
C:\wamp\bin\apache\Apache2.2.11\conf\extra\httpd-vhosts.conf
Add these lines :
<VirtualHost *:80>
ServerAdmin alam@batikweb.com
DocumentRoot “C:/wamp/www/drupal”
ServerName batikweb.com<Directory “C:/wamp/www/drupal/”>
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order Deny,Allow
Deny from all
Allow from 127.0.0.1</Directory>
</VirtualHost>
Save the file.
Start WampServer.
Open http://batikweb.com
I got these error in drupal
Deprecated: Function ereg() is deprecated in C:\wamp\www\drupal\includes\file.inc on line 902
Great, I use latest wampserver that use php 5.3.0 that deprecated function ereg().
The solution is simple, I’ll post it in next post.
Got to go now, stay health!
- deprecated: function ereg() is deprecated in c:\wamp\www\drupal\includes\file inc on line 902
- deprecated: function ereg() is deprecated in c:\wamp\www\drupal-6 14\includes\file inc on line 902
- deprecated: function ereg() is deprecated in c:\wamp\www\drupal\includes\file inc on line 902 wamp
- installing Drupal on wamp
- move drupal 6 on wamp
- install drupal 6 wamp
- magento step by step on wamp
- magento Deprecated functionality: Function ereg() is deprecated
- instalar drupal con wamp server
- install drupal 6 14 and wampserver
- installing drupal in wamp
- install drupal 6 14 wamp
- install drupal 6 step by step
- install drupal via wamp
- install drupal wamp
- quickest way to install drupal on localhost using wamp
- xampp wampserver
- wamp step by step to use
- wamp step by step
- wamp drupal 902
Related posts:
- Deprecated: Function ereg() is deprecated when install Drupal At previous post about install drupal in localhost using...
- Step by Step Install Drupal on WampServer : Vhost and Clean URL In previous post I have talk about fix ereg()...
- Step by Step install Joomla with WampServer Hello everybody, happy thanksgiving Today I try to explain...
- Step by step move drupal from localhost to drupal hosting : Domain Setting A client want to move his website that utilize...
- Step by step move drupal from localhost to drupal hosting : AddOn Domain Setting At previous post I have covered steps for domain...
Related posts brought to you by Yet Another Related Posts Plugin.
If you enjoyed this post, please consider to leave a comment or subscribe to the feed and get future articles delivered to your feed reader.







