I think it’s an issue with your network or server. I’ve run a number of local installs using anything but port 80 and never had a problem.
Thread Starter
cje
(@cje)
esmi,
thanks for your quick reply! why do you think it’s problem with my server as long as I host other cms websites w/o any rendering problems?
thanks for any suggestions
Primarily because I’ve never come across a port problem but also because every time I’ve seen a situation where the site (eventually) renders without graphics, it’s been a domain/url issue.
Thread Starter
cje
(@cje)
okay, thanks again for answering.
Do you know any links which describes more about the possible url issue?
Thread Starter
cje
(@cje)
…one more thing – if domain/url issue; do you have a suggestion for how a .htaccess file would look like to pass this problem?
Thread Starter
cje
(@cje)
This is my .htaccess file:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
You’ve got 2 rewrite blocks in there. Try just using:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Thread Starter
cje
(@cje)
Have to look into the url issue….. Do you know any pages with more info about the possible url issue?