For those that are getting the following error:
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING
It has been said before on page 4, but what you need to do is fix an error in the upload plugin. Go to plugin manager > Update Gallery User and edit the following line:
Code:
require_once('/home/website/root/forum/gallery2/embed.php'');
remove the double quote at the end so it looks like:
Code:
require_once('/home/website/root/forum/gallery2/embed.php');