Page 1 of 1

main page blank after upgrade, but works with index.php

Posted: Wed Apr 17, 2013 12:29 am
by echobrin
I upgraded from 1.11.4 to 1.11.5 and changed my PHP version from 5.2.17 to 5.3. Upgraded all modules. Cleared cache. The site works fine except for the main page. When I try to load http://fosterdogs.com/ I get a blank page. But if I go to http://fosterdogs.com/index.php or http://fosterdogs.com/home.html the page displays normally.

I turned on debug in the config but it doesn't show anything.

htaccess:

Code: Select all

# Attempt to override some php settings, these settings may be helpful on some hosts if your
# default configuration does not meet CMS's minimum requirements, and your host
# has given your account appropriate permissions
#php_value upload_max_filesize "10M"
#php_value session_save_path "tmp/cache"

#php_flag magic_quotes_gpc Off
#php_flag register_globals Off
#php_flag session.use_trans_sid Off

# (this is important, so uncomment if your host permit)
#Options -Indexes
#ServerSignature Off
#
#Options +FollowSymLinks
#
<IfModule mod_rewrite.c>
RewriteEngine on
#
#Sub-dir e.g: /cmsms
RewriteBase /

#
# 301 Redirect all requests that don't contain a dot or trailing slash to
# include a trailing slash
# but ignore POST requests.
#RewriteCond %{REQUEST_URI} !/$
#RewriteCond %{REQUEST_URI} !\.
#RewriteCond %{REQUEST_METHOD} !POST$
#RewriteRule ^(.*) %{REQUEST_URI}/ [R=301,L]

# Rewrites urls in the form of /parent/child/
# but only rewrites if the requested URL is not a file or directory
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ index.php?page=$1 [QSA]
</IfModule>

Re: main page blank after upgrade, but works with index.php

Posted: Wed Apr 17, 2013 12:44 am
by calguy1000
all three links work fine here.

[SOLVED] main page blank after upgrade, but works with index

Posted: Wed Apr 17, 2013 1:00 am
by echobrin
Wow, no kidding! :) I cleared my cache again and now it works for me too. Thanks for taking the time to check those links. I appreciate it. And I'm always glad when it's an easy answer!