OK i solved the issues installing 0.9.6.3, there are a lot of Deprecated functions in the code.
https://forums.modx.com/thread/?thread=60964.new%3Btopicsee&i=1&page=2 the last post on this thread is an easy solution for a newby.
Then there was a piece of code in browsercheck.inc
$client = & new phpSniff($GET_VARS['UA'],$sniffer_settings);
Need to remove the '&'
Then there was the 4 errors that start with:
'Specified key was too long; max key length is 1000 bytes'
I changed the collation from Uft8 to Latin1 as it take s 1/3 of the bytes.
Then there is a line of code 844 in document.parser.classic.ini that reads like this:
$tempSnippetParams= split($splitter, $tempSnippetParams);
need to be changed to this;
$tempSnippetParams= preg_split('/$splitter/', $tempSnippetParams);
I dont know how comprehensive these fixes are or if they will cause problems later on as im really very green and i dont really understand what i was changing.
good luck
[ed. note: worldly123 last edited this post 14 years, 4 months ago.]