GetURL() fatal error with admintheme.inc.php
Posted: Sat Jan 29, 2011 9:38 pm
I am posting this problem here because it might not be an installation issue. I have upgraded http://www.welovecmsms.com to 1.9.2. Right now, it's an addon domain at my new web host's server. The server details are here: http://www.welovecmsms.com/phpinfo.php.
The front page says
That mystifies me since I was able to drill down deeper into the /install folder and upgrade the site and can get to the login panel as well.
But once I am logged in, I get this error:
I've Googled and found one other instance of this exact fatal error message, and was hopeful because the thread said [SOLVED], but apparently it was simply closed b/c the OP provided no useful troubleshooting info.
Here's my .htaccess file:
*Could* the fact that this is now running as an addon domain somehow be stinking up the pond?
Meanwhile, I am going to try to work on another CMSMS site this weekend, which hopefully won't give me problems.
The front page says
Code: Select all
Not Found. The requested URL was not found on this server.
But once I am logged in, I get this error:
Code: Select all
Fatal error: Call to a member function GetURL() on a non-object in /home/USERID/public_html/cmsms/lib/classes/class.admintheme.inc.php on line 137
Here's my .htaccess file:
Code: Select all
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
# 301 Redirect all requests that don't contain a dot or trailing slash to
# include a trailing slash
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
RewriteRule ^News/rss(.+)$ index.php?page=News/rss$1 [S=1]
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteCond %{REQUEST_FILENAME} !-d [NC]
RewriteRule ^(.+)$ index.php?page=$1 [QSA]
<Files 403.shtml>
order allow,deny
allow from all
</Files>
Meanwhile, I am going to try to work on another CMSMS site this weekend, which hopefully won't give me problems.