Installing WordPress October 4, 2007
Posted by webweaver64 in Drupal, Local Multi Site, Local Server, WinXP, WordPress, XAMPP.add a comment
Now that I have that fixed… I’m off to setup WordPress
I’m using the instructions found here WordPress@T2
Ok, it didn’t start when I type the address, I’m sure because I have my files in www\foldername I also found out my drupal sites weren’t working.
Here is what I found out after playing around and searching out information on the web.
xampp\appache\conf\extra\httpd-vhosts.conf needs:
NameVirtualHost 127.0.0.1:80
(for xampp)
<VirtualHost 127.0.0.1:80>
ServerName localhost
DocumentRoot /xampp/htdocs/
</VirtualHost>
(for drupal)
<VirtualHost working.tst:80>
ServerName working.tst
DocumentRoot /www/drupal-5/
</VirtualHost>
(for wordpress)
<VirtualHost wpworking.tst:80>
ServerName wpworking.tst
DocumentRoot C:/www/wordpress/
</VirtualHost>
working.tst is one of my drupal sites, you can have more then one running on the same installation.
wpworking.tst is my WordPress site, you need full intallations for each wordpress site you want.
You need a VirtualHost for each site you want to run.
xampp\appache\conf\httpd.conf needs, in addition to the changes I made previously:
Below <IfModule dir_module></IfModule>
<Directory “/www/drupal-5″>
Order allow,deny
Allow from all
AllowOverride All
</Directory>
<Directory “C:/www”>
Order allow,deny
Allow from all
AllowOverride All
</Directory>
To be honest I’m not sure if you need both, or if just moving it, made the difference, but at this point I’m not changing anything.
windows\system32\drivers\ect\hosts needs:
127.0.0.1 localhost
127.0.0.1 working.tst
127.0.0.1 wpworking.tst
After making the above changes, I can access drupal sites I’ve already created, install WordPress and access XXAMP starting page.
I haven’t tried adding an additional Drupal site, or another WordPress site. As WordPress requires an additional install, I’m sure I just need to add to each for the new location. As for Drupal, because I run it from an install.php I’m sure it would be the same. When I try, I’ll let you know if it worked.
Whew!
Sites that had information I used:
http://geeksaresexy.blogspot.com
http://www.tamba2.org.uk/
http://textbook.textpattern.net/
http://www.clearpointsystems.com/
And away we go October 4, 2007
Posted by webweaver64 in Drupal, Local Server, XAMPP.add a comment
Tried changing a few things and it’s a no go. Again because I don’t actually understand what it is I’m doing. I’m screwed.
Did a search on Drupal and found this http://drupal.org/node/161975
Just needed to add the following to: xampp/apache/conf/httpd.conf
***edited*** I think this actually needs to be in \xampp\apache\conf\extra\httpd-vhost.conf
NameVirtualHost 127.0.0.1:80
<VirtualHost 127.0.0.1:80>
DocumentRoot C:/xampp/htdocs/
ServerName localhost
</VirtualHost>
Thank Go*dess that there are people that write up how tos…..
Word Press AAARRRGGG October 3, 2007
Posted by webweaver64 in Uncategorized.add a comment
Ok, so now I’m trying to get a localhost of wordpress running and all I can get is… Drupal. I sure wish I understood what I’m doing LOL


