Notice: Undefined variable: previous_link in E:\domains\d\deveron-arts.com\user\htdocs\wb\modules\gallery\view.php on line 434
....
Notice: Undefined variable: popcheck in E:\domains\d\deveron-arts.com\user\htdocs\wb\modules\gallery\modify_settings.php on line 199
Technically these messages are no errors. They are notices.
Nothing is going wrong, the PHP engine is just telling you that the developer originally wanted to display something, but there is nothing to display. (like: this is first image, there is no previous image link)
A developer could use these messages to improve the code.
Just go to the settings-page, click an "Advanced settings" button and set the errorlevel (currently set to
E_ALL) to
E_NONE. (In live servers, you never want to display errors to your customers.)
On test and development servers you could/should set it to
E_ALL^E_NOTICE. This tells PHP to display errors but not the notices (like you see now).
Ruud