"500 - Unable to load renderer class" error with my template

Everything to do with Joomla! 1.5 templates and templating.

Moderator: General Support Moderators

Forum rules
Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Locked
99avant
Joomla! Apprentice
Joomla! Apprentice
Posts: 11
Joined: Thu May 14, 2009 2:09 pm

"500 - Unable to load renderer class" error with my template

Post by 99avant » Thu May 14, 2009 2:17 pm

I have a custom template that I made on my development machine (xampp). It works great on this machine, but when I move the template to our final hosting solution (godaddy) it gives me the "500 - Unable to load renderer class" error...

Other templates work on the final hosting, just my custom template breaks. So I know I did something wrong.

I have gone through my code line by line and didn't find any typos... Maybe someone could find one or point out my error here...

Thank you for any help!

my index.php code:

Code: Select all

<?php defined( '_JEXEC' ) or die( 'Restricted access' );?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
   xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" >

<head>
<jdoc:include type="head" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/system.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/general.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template?>/css/style.css" type="text/css" />
</head>

<body>

	<div id="header">
		<div id="logo"><a href="index.php"><img src="images/logo.gif" alt="Razors Edge Logo"></a></div>
		<div id="phonenumber">906.265.9160</div>
		<jdoc:include type="Modules" name="top" />
	</div>

	<div class="top_m">
		<div id="top_menu">
			<jdoc:include type="Modules" name="user3" />
		</div>
	</div>

	<div id="wrap">
	<div id="teaser">
		<jdoc:include type="Modules" name="user1" />
	</div>

		<div id="content_wrap">
			<div id="col_left">
				<jdoc:include type="Modules" name="left" />
			</div>
			<div id="col_main">
				<jdoc:include type="Modules" name="right" />
			</div>
		</div>



		<div id="footer">
		<p class="center">Razors Edge | 754 Highway M-73 | Iron River, MI 49935 | Ph. 906.265.9160</p>
		</div>
	</div>

</body>
</html>
I have also attached my template file if anyone wants to take a look.
Again, I appreciate it.

-Ben
You do not have the required permissions to view the files attached to this post.

99avant
Joomla! Apprentice
Joomla! Apprentice
Posts: 11
Joined: Thu May 14, 2009 2:09 pm

Re: "500 - Unable to load renderer class" error with my template

Post by 99avant » Thu May 14, 2009 2:55 pm

I QUIT!

the capitalization of the word Modules...
Changed them all to lower case m and it works.

User avatar
ooffick
Joomla! Master
Joomla! Master
Posts: 11626
Joined: Thu Jul 17, 2008 3:10 pm
Location: Ireland
Contact:

Re: "500 - Unable to load renderer class" error with my template

Post by ooffick » Thu May 14, 2009 2:57 pm

Hi Ben, welcome to the forum,

you have Capitalized the include type Modules. If you write it lowercase it will work.
e.g.
find this

Code: Select all

<jdoc:include type="Modules" name="right" />
and replace it with this:

Code: Select all

<jdoc:include type="modules" name="right" />
Windows is not case sensitive, therefore it will work in windows but not on a Unix / Linux machine.

Olaf
Olaf Offick - Global Moderator
learnskills.org

99avant
Joomla! Apprentice
Joomla! Apprentice
Posts: 11
Joined: Thu May 14, 2009 2:09 pm

Re: "500 - Unable to load renderer class" error with my template

Post by 99avant » Thu May 14, 2009 3:15 pm

Thank you for the welcome and the help.

chetana
Joomla! Fledgling
Joomla! Fledgling
Posts: 1
Joined: Tue Aug 02, 2011 6:59 am

"500 - Unable to load renderer class" error with my template

Post by chetana » Fri Aug 05, 2011 11:51 am

i got same error in my site when i am trying to run my site on server but the same site runs on local machine properly.i had used gavick pro template...

davisdesign
Joomla! Apprentice
Joomla! Apprentice
Posts: 30
Joined: Fri Oct 03, 2014 12:38 am

Re: "500 - Unable to load renderer class" error with my temp

Post by davisdesign » Fri Oct 03, 2014 7:55 pm

Nevermind. I figured it out. I have an extra set of quotations on one of the types and I also had forgot to specify a "type" on another line. Works fine now. Thanks so much for your help!


Locked

Return to “Templates for Joomla! 1.5”