ambermbaylor
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Subdirectory themes not workingOh, and this is the other bit of code in that same file:
RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L] RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L] RewriteRule . index.php [L]#Forum: Fixing WordPress
In reply to: Self-Hosted WP WAMP Server not Connecting ExternallyHi Brad,
I am going to do a fresh install of everything in the morning as i might have changed something that is causing me problems. I will also reset the domain name servers like you suggested.
I will keep you posted.
Thanks, Amber
Forum: Fixing WordPress
In reply to: Self-Hosted WP WAMP Server not Connecting ExternallyHi Again,
Thanks for keeping up on this post Brad and no worries on taking any amount of time. So I do not have a static ip and when I changed that settings on the router I ended up having router issues for the last 3 days! Oops!
So I went to my domain name provider (Go Daddy) and delegated the no-ip name servers to my domain. No-ip.com gave me ns1.no-ip.com, ns3.no.ip.com, & ns4.no-ip.com. So I added those name servers to my domain.
Then I updated the http.conf file. For some reason, the code that you pointed me to would not properly start the WAMP server. So I reverted back to the code that would work:
NameVirtualHost 127.0.0.1
<VirtualHost 127.0.0.1>
DocumentRoot “C:/wamp/www”
ServerName localhost
</VirtualHost><VirtualHost *:8080>
DocumentRoot “C:/wamp/www/ambwebdesigns”
ServerName ambwebdesigns.com.ns1.no-ip.com
ErrorLog logs/ambwebdesigns_error.log
</VirtualHost>But now I am not able to see any of my pages. I have wordpress installed in the folder ambwebdesigns but I cannot see it when I type in ambwebdesigns.com or ambwebdesigns.com:8080.
I am also unable to access myphpadmin or my localhost even by appending 8080 to the end of the name.
My question is when I use the current ip4 address in the host file and the port forwarding, does no-ip.com resolve those addresses as well?
Sorry about my noviceness and thanks again for your help.
Headed to your donation box now!!! 🙂
Amber
Forum: Fixing WordPress
In reply to: Self-Hosted WP WAMP Server not Connecting ExternallyHi Brad,
Sorry to bother you again and I thought I totally had it, but I still am not there. I am 90% there, but I know I am missing something…
My domain name is: http://www.ambwebdesigns.com
My LAN is: 192.168.1.108In my host file I have:
127.0.0.1 localhost
192.168.1.108 http://www.ambwebdesigns.comI had to change the router settings to static ip b/c it was set on dynamic ip which was causing problems. The port forwarding is 8080 to 8080 to 192.168.1.108.
I changed the listen port to 8080 and the http.conf file has:
VirtualHost *:8080>
DocumentRoot c:/www/wampp/ambwebdesigns
ServerName localhost
<Directory />
Options ExecCGI FollowSymLinks Includes Indexes
AllowOverride All
Order allow,deny
Allow from all
</Directory>
<IfModule dir_module>
DirectoryIndex index.php index.php4 index.php3 index.cgi index.pl index.html index.htm index.shtml index.phtml
</IfModule>
</VirtualHost><VirtualHost *:8080>
DocumentRoot c:/www/wamp/ambwebdesigns
ServerName http://www.ambwebdesigns.com
<Directory />
Options ExecCGI FollowSymLinks Includes Indexes
AllowOverride All
Order allow,deny
Allow from all
</Directory>
<IfModule dir_module>My site is stored at: wamp/www/ambwebdesigns
When I do this change Apache does not start up correctly.
When I change my http.conf like below instead of the above virtual host code that you provided, my http://www.ambwebdesigns.com is goes to my router page and I am unable to access the myphpadmin:8080 portal.
NameVirtualHost 127.0.0.1
<VirtualHost 127.0.0.1>
DocumentRoot “C:/wamp/www”
ServerName localhost
</VirtualHost><VirtualHost 127.0.0.1>
DocumentRoot “C:/wamp/www/ambwebdesigns.com”
ServerName local.ambwebdesigns.com
ErrorLog logs/ambwebdesigns_error.log
</VirtualHost>So I know I am missing something, but I can’t quite figure out what it is. Any help would again be appreciated. And sorry for bothering you!
Oh, and I signed up for the no-ip.com and added the ambwebdesigns.com to my host.
BTW, is there a donation box on your site? 🙂
Thanks, Amber
Forum: Fixing WordPress
In reply to: Self-Hosted WP WAMP Server not Connecting ExternallyBrad!
You totally rock!!! I had tried the 8080 change to the apache file before but again could not get the localhost to display so when you posted about the DDNS I thought that was the missing piece. The ah ha moment for me was the 80 port for http, which I totally missed.
Your tutorial was really great. I had been putting all the pieces together for the self-hosted blog and your tutorial really helped me understand it all in a more complete manner.
Thanks again.
Hope to be of help to you one day!
Cheers right back to you!!
Best, Amber
Forum: Fixing WordPress
In reply to: Self-Hosted WP WAMP Server not Connecting ExternallyThanks Brad. When I changed the Listen to 8080 (was on port 80) in the Apache file, I am unable to access my localhost. When I changed it back to 80 I was able to access my localhost. Any thoughts as to why?
Thanks! Amber