• I’m hosting WP 2.3 on a fresh Ubuntu server 7.04 install. My ISP blocks port 80. I forward port 8080 for HTTP. My ISP also assigns me a dynamic IP. I use NAMECHEAP’s DDNS service. I update my IP using the dl-DDNS script for NAMECHEAP.

    My WP install works fine when OPTIONS are set to point to my internal IP. When OPTIONS are set to point to http://www.doxodoulos.org (my domain name) the request does not properly resolve. I get blank screens. Same results occur using the internal & external IP’s (even with the :8080).

    The exception to this is if I type http://www.doxodoulos.org/blog/wp-admin. I get a login screen, but without the proper CSS styling.

    Sounds like a DNS issue. However, I’m also running eGroupware on the same machine. When I point to http://www.doxodoulos.org/egroupware I get to my eGroupware login page and everything works fine. This, and the fact that I can get to the ‘UN-styled’ admin login, leads me to believe that DNS is not the issue.

    I’ve tried removing my ‘themes’ directory. This had no effect. I’ve tried removing my ‘plugins’ directory. No effect.

    The machine is named ‘ubuntu2’ on my intranet. My router is set to assign the static IP of 192.168.0.110. Port 8080 is forwarded to this box. Here is my /etc/hosts file:

    **********************************************************

    127.0.0.1 localhost ubuntu2
    192.168.0.110 http://www.doxodoulos.org

    **********************************************************

    Hopefully that gives you all enough to get started. I’m very appreciative for this forum. It’s already been a great help. Any insight any of you can give will be greatly appreciated.

Viewing 7 replies - 1 through 7 (of 7 total)
  • 1. In the admin > Options the two URI values have to point to real address, not fantasy.
    If your blog is installed at
    example.com/blog — then having just example.com = fantasy…
    Correct it.

    Thread Starter mbeazley

    (@mbeazley)

    Thanks for the quick reply. I see I wasn’t clear in my original post. The WordPress address (URL) points to: http://doxodoulos.org/blog. That’s where the WordPress install is located. The Blog address (URL) points to: http://doxodoulos.org. I don’t think that’s my issue.

    Unless you followed this tutorial:
    http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory
    that’s your issue!

    Thread Starter mbeazley

    (@mbeazley)

    I did use the tutorial to get set up. I’ve gone back through the steps to make sure everything is as it should be. Again, when I change the WordPress & Blog URL’s to the internal IP/blog & internal IP respectively the system works fine, which would seem to indicate that things are where they ought to be per the tutorial.

    Here’s the index.php file from my /var/www directory:

    **********************************************************

    <?php
    /* Short and sweet */
    define(‘WP_USE_THEMES’, true);
    require(‘./blog/wp-blog-header.php’);
    ?>

    ***********************************************************

    Thread Starter mbeazley

    (@mbeazley)

    So here’s the thing. It looks like my issue is CSS styling. The main login page is blank, but the wp-admin page is complete, just lacking proper styling.

    So what’s my issue? Why is the styling all correct when I point to the local IP & IP/blog, but not when I point to the domain?

    Also, when I put index.html in my /var/www/blog directory it doesn’t load when I type http://www.doxodoulos.org, but does when I type http://www.doxodoulos.org/blog.

    Thread Starter mbeazley

    (@mbeazley)

    Anyone have any leads for me?

    “Also, when I put index.html in my /var/www/blog directory it doesn’t load when I type http://www.doxodoulos.org, but does when I type http://www.doxodoulos.org/blog.&#8221;

    This sounds to me like you have wordpress installed into a subdirectory. /home /htdocs(public_html, www) /blog/index.php
    /htdocs(public_html, www)is the root directory of your web site, the highest level you can put a web page.

    what you have is /home/htdocs/blog (wordpress app in a folder named blog) Does this sound about right?
    If so….
    then the issue is not your installation, it is your domain pointers.
    http://www.doxodoulos.org, points to /home/htdocs
    so you need to just set up a domain re-direct, so to have both work.. set up wordpress in your root directory (just copy the app to /home/htdocs (to wp installs) that takes up space and resources. A better way is use a sub-domain pointer.
    http://www.doxodoulos.org points to /htdocs/blog and
    http://www.blog.doxodoulos.org points to /htdocs/blog

    The only other way I can think of, is a redirect in the htdocs folder. (index.html which on load, redirects to /htdocs/blog/index.html) (google it for a how to)

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Perplexing Intranet/Internet Issue’ is closed to new replies.