Interesting. Can you please post the content of your language.php as well? And the above fatal error is the only one you current have, right?
Printable View
Interesting. Can you please post the content of your language.php as well? And the above fatal error is the only one you current have, right?
Yes, that's the only one.
Here's language.php:
<?php
class SSULanguageBase{
var $registry;
function register($name, $value){
$this->registry[$name] = $value;
}
function registry($name){
if(isset($this->registry[$name]))
return $this->registry[$name];
return null;
}
function registerArray($params){
foreach ($params as $key => $value)
$this->register($key, $value);
}
function removeDelimiter($name){
// remove excess $this->registry('name_delimiter')
$name = preg_replace('/'.$this->registry('name_delimiter').$this->registry('name_delimiter').'+/', $this->registry('name_delimiter'), $name);
// remove anything that looks like our identifiers in the name
$name = str_replace(array( $this->registry('category_identifier'),
$this->registry('manufacturer_identifier'),
$this->registry('page_identifier'))
, '', $name);
foreach($this->registry('products_identifiers') as $products_identifier)
$name = str_replace($products_identifier, '', $name);
return $name;
}
}
This is a bug for some very old php4 versions (things not working well with mixcase class-name).
What is your php version?
Regards
Link to bug: http://bugs.php.net/bug.php?id=27227
It's 4.3.11
4.3.11 is released 3-4 years ago, perhaps it's now time for your host to upgrade to a newer version?
Each new version released come with bug fixes and performance improvement, so it will benefit your whole site over all.
In the mean time, please do this: please turn off ssu via admin, this should return your links back to normal. Please pm me if you need more help.
Regards
I'll take it up with my host. Thanks for your help!
And dont forget zen 1.4 coming out soon will require php5 to run.
However, if you are still on older version of zen (older than 1.3.8), then it's safer to stay on php4 for now.
If you dont know which php version works best for your zencart, post a new topic in the appropriate forum and someone in the dev team will help you with that.
When a product is brought up by searching the part number and the "Add to cart" is selected it goes to "Page Not Found". This does not occur anywhere else on the site.
www.thecablestation.com
Example Part 35509
When I turn SSU off this does not occur.
???
Aparently not the latest. Is that 2.9.6?