I'm working in OsCommerece and getting this up in my error log
PHP Parse error: syntax error, unexpected T_STRING in public_html/includes/classes/seo.class.php(2206) : eval()'d code on line 1
Maybe just remove the <?php
, ?>
tags, as seo.class.php
seems to run the input through eval()
mixed eval(string $code)
The code mustn't be wrapped in opening and closing PHP tags...
var_dump($cache_data)
before the eval
on line 2206, and add that output to your answer?$cache_data
has a heap of numbers in it e.g S0lNy8xL1VD3dfQLdXN0Dg... Placing var_dump($cache_data)
resulted in this being display on screen string(92) "define('MANUFACTURER_NAME_2', 'sitename'); define('MANUFACTURER_NAME_3', 'productname'); "
http://pastebin.com/Q1W2an38
this is the function that line 2206 lives in. Happy to provide on info if needed
seo.class.php
?