FWR Media, on 17 January 2011 - 03:27 PM, said:
The below is not a fix but may provide me the info I need.
includes/modules/ultimate_seo_urls5/main/usu5.php
Lines 76 - 78
Find ..
public function __destruct() {
if ( defined( 'USU5_ENABLED' ) && ( USU5_ENABLED == 'true' ) ) {
$this->getVar( 'cache' )->store( $this->getVar( 'registry' )->store() );
Change to ..
public function __destruct() {
if ( defined( 'USU5_ENABLED' ) && ( USU5_ENABLED == 'true' ) ) {
$cache = $this->getVar( 'cache' );
$registry = $this->getVar( 'registry' );
$store = true;
if ( false === ( ( $cache instanceof iCache_System ) && ( $registry instanceof Data_Registry ) ) ) {
$store = false;
$error = 'Cache or registry cannot be retrieved: ' . PHP_EOL . PHP_EOL . print_r( $this, true );
trigger_error( $error, E_USER_WARNING );
}
( false !== $store ) ? $cache->store( $registry->store() ) : null;After Making that change, this is what came back using Kiss Error Handling:
Quote
Error: Non-static method KissMT_Modules::stripStopWords() cannot be called statically, assuming $this from compatible context KissMT_Module
File: includes/modules/kiss_meta_tags/abstracts/kiss_modules.php
Line: 134
E_WARNING Error Count: 4
Error: getimagesize(images/infoBoxHeading_tl.gif) [<a href='function.getimagesize'>function.getimagesize</a>]: failed to open stream: No such file or directory
File: includes/functions/html_output.php
Line: 39
Error: getimagesize(images/infoBoxHeading_tr.gif) [<a href='function.getimagesize'>function.getimagesize</a>]: failed to open stream: No such file or directory
File: includes/functions/html_output.php
Line: 39
Error: getimagesize(images/cont_heading_tl.gif) [<a href='function.getimagesize'>function.getimagesize</a>]: failed to open stream: No such file or directory
File: includes/functions/html_output.php
Line: 39
Error: getimagesize(images/cont_heading_tr.gif) [<a href='function.getimagesize'>function.getimagesize</a>]: failed to open stream: No such file or directory
File: includes/functions/html_output.php
Line: 39
E_NOTICE Error Count: 3
Error: Undefined variable: left_corner
File: includes/classes/boxes.php
Line: 315
Error: Undefined variable: right_arrow
File: includes/classes/boxes.php
Line: 320
Error: Undefined variable: right_corner
File: includes/classes/boxes.php
Line: 325
E_USER_WARNING Error Count: 1
Error: Cache or registry cannot be retrieved: Usu_Main Object ( [vars:private] => Array ( ) )
File: includes/modules/ultimate_seo_urls5/main/usu5.php
Line: 84









