Uploading ARCHITECTURE_HOTSTART PROBLEM PLEASE HLP

  • linkedkube
  • Topic Author
  • New Member
  • New Member
More
13 years 8 months ago #10044 by linkedkube
Thanks Milos, one more question. Is the configuration file made after you start the install? I dont want to delete the old one on my host if I need it!

Please Log in to join the conversation.

  • linkedkube
  • Topic Author
  • New Member
  • New Member
More
13 years 8 months ago #10045 by linkedkube
I followed the directions exactly. I'm putting the directory to the installation folder and im getting

Fatal error: Uncaught JLIB_REGISTRY_EXCEPTION_LOAD_FORMAT_CLASS thrown in /home/content/14/8142114/html/libraries/joomla/registry/format.php on line 52

Please Log in to join the conversation.

  • linkedkube
  • Topic Author
  • New Member
  • New Member
More
13 years 8 months ago #10048 by linkedkube
I spoke with godaddy and everything is installed. I'm just getting this error when I try to go to my site. The godaddy rep told me to check with the provider of the template file because they couldn't help me any further.

Fatal error: Uncaught JLIB_REGISTRY_EXCEPTION_LOAD_FORMAT_CLASS thrown in /home/content/14/8142114/html/libraries/joomla/registry/format.php on line 52


<?php
/**
* @package Joomla.Platform
* @subpackage Registry
*
* @copyright Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/

defined('JPATH_PLATFORM') or die;

/**
* Abstract Format for JRegistry
*
* @package Joomla.Platform
* @subpackage Registry
* @since 11.1
*/
abstract class JRegistryFormat
{
/**
* Returns a reference to a Format object, only creating it
* if it doesn't already exist.
*
* @param string $type The format to load
*
* @return object Registry format handler
*
* @since 11.1
* @throws JException
*/
public static function getInstance($type)
{
// Initialize static variable.
static $instances;
if (!isset ($instances)) {
$instances = array ();
}

// Sanitize format type.
$type = strtolower(preg_replace('/[^A-Z0-9_]/i', '', $type));

// Only instantiate the object if it doesn't already exist.
if (!isset($instances[$type])) {
// Only load the file the class does not exist.
$class = 'JRegistryFormat'.$type;
if (!class_exists($class)) {
$path = dirname(__FILE__).'/format/'.$type.'.php';
if (is_file($path)) {
require_once $path;
} else {
throw new JException(JText::_('JLIB_REGISTRY_EXCEPTION_LOAD_FORMAT_CLASS'), 500, E_ERROR);
}
}

$instances[$type] = new $class;
}
return $instances[$type];
}

/**
* Converts an object into a formatted string.
*
* @param object $object Data Source Object.
* @param array $options An array of options for the formatter.
*
* @return string Formatted string.
*
* @since 11.1
*/
abstract public function objectToString($object, $options = null);

/**
* Converts a formatted string into an object.
*
* @param string $data Formatted string
* @param array $options An array of options for the formatter.
*
* @return object Data Object
*
* @since 11.1
*/
abstract public function stringToObject($data, $options = null);
}

Please Log in to join the conversation.

  • milos
    Support Staff
  • Moderator
  • Moderator
More
13 years 8 months ago #10054 by milos
Please use Report to Moderator to send me private message and give me your GoDaddy username and password.

Please Log in to join the conversation.

  • linkedkube
  • Topic Author
  • New Member
  • New Member
More
13 years 8 months ago #10069 by linkedkube
Nevermind. I figured it out. Thanks a ton.

Please Log in to join the conversation.

Time to create page: 0.083 seconds
Powered by Kunena Forum