Page 1 of 1

HELP No Menu after changes on the provider side

Posted: Sun Jun 17, 2018 9:06 am
by ajvangent
http://www.ruud-vermaat-duivensport.nl/

the provider moved the site to another platform.. now the menu does not work anymore. I cannot login to the site CMS anymore because that part is in the same column...

What to do?
I already renamed the backup file of the content but that only involves the content of the site, not the menu.

Any other tricks to try?

Re: HELP No Menu after changes on the provider side

Posted: Sun Jun 17, 2018 9:22 am
by frase
ajvangent wrote:
Sun Jun 17, 2018 9:06 am
I cannot login to the site CMS anymore ...
Try:
http://www.ruud-vermaat-duivensport.nl/?login

Rename:
\userfiles\downloads\XHdebug.txt
to
\userfiles\downloads\_XHdebug.txt

Call the Site and see the errors. Post it here.

BTW:
Your Template is very old (table-layout).
Maybe the new PHP-version cannot work with the menu ???

Re: HELP No Menu after changes on the provider side

Posted: Sun Jun 17, 2018 10:08 am
by cmb
frase wrote:
Sun Jun 17, 2018 9:22 am
Your Template is very old (table-layout).
Maybe the new PHP-version cannot work with the menu ???
Quite likely. From looking at another template of cmsimplewebsites.com, it uses the split() function which is not available as of PHP 7. If you have the following line in template.htm:

Code: Select all

	     list ($item,$url)= split('@',$x); 
replace it with:

Code: Select all

	     list ($item,$url)= explode('@',$x);