Quote:
Originally Posted by Sworm
Simon, the errors are fixed. I received that error clicking on ACP/Categories bla bla....
I have edited all the photoplog acp php file replacing:
Code:
error_reporting(E_ALL & ~E_NOTICE);
with
Code:
error_reporting(E_ALL & ~E_NOTICE & ~8192);
Now it's working  THANK you REALLY. Can i ask if this is a better solution than removing all the "&" in the deprecated lines?
PS
When you talk about TYPE and ENGINE, you for eg. mean this type to change in engine?:
Code:
$vbulletin->input->clean_array_gpc('g', array(
'count' => TYPE_UINT,
'cid' => TYPE_UINT
and
Code:
$vbulletin->input->clean_array_gpc('g', array(
'c' => TYPE_UINT,
'n' => TYPE_UINT,
'u' => TYPE_UINT,
'page' => TYPE_UINT,
'pp' => TYPE_UINT,
'q' => TYPE_NOHTML,
'v' => TYPE_UINT
Thanks
|
Yes it's a better solution but that error coding should also be in your php.ini (ask your host if you're not sure), as for TYPE to ENGINE i mean wherever you see
TYPE=MyISAM replace it with
ENGINE=MyISAM in the files that you uploaded to server for this product.