Base on work in this topic:
http://forum.coppermine-gallery.net/index.php?topic=69973.new;topicseen#new
Plugin Information is in there:
http://forum.coppermine-gallery.net/index.php/topic,33151.html
I dont understand what you mean when you say comment
1.open helpers/codebase15x_helper.php and comment Line 30~69
Parse error: syntax error, unexpected '(', expecting '}' in /xxxxxxxxx.com/html/plugins/copperads/helpers/codebase15x_helper.php on line 83
This is the error I am getting, I'm running the latest version.
To fix plugin you should make two replacements in the code of copperads/helpers/codebase15x_helper.php file:
1. replace on line 83
if ($stop) {
echo <<< EOT
<form action="{$superCage->server->getEscaped('REQUEST_URI')}" method="post">
with
$action_uri = $superCage->server->getEscaped('REQUEST_URI');
if ($stop) {
echo <<< EOT
<form action="{$action_uri}" method="post">
2. replace on line 138
if ($action === 1) {
echo <<<EOT
<form action="{$superCage->server->getEscaped('REQUEST_URI')}" method="post">
with
$action_uri = $superCage->server->getEscaped('REQUEST_URI');
if ($action === 1) {
echo <<<EOT
<form action="{$action_uri}" method="post">
I've attached already fixed file too. Extract in copperads/helpers folder and run installation process.
Regards
Dimo Todorov
Is anyone still using this plugin?
Could they put a link to their active site?