[HACK] No phpNuke Left Blocks ? [HACK] No phpNuke Left Blocks ?
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

[HACK] No phpNuke Left Blocks ?

Started by dcooper, November 17, 2003, 07:02:10 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

dcooper

Is there anyway to remove left block? Would  love to have coopermine full page.


Steve

DJMaze

Go to your phpNuke admin and go to the blocks setup.

Put them all on the right side :lol:
There are 2 kinds of users in this world: satisfied and complainers.
Why do we never hear something from the satisfied users?
http://coppermine-gallery.net/forum/index.php?topic=24315.0

dcooper

But I do not want right or left blocks. I know how to turn off right. I want no blocks on left either. :)

sengsara

Open your theme.php inside themes/yourtheme/

Find inside function themeheader
       blocks(left);
Change to
   if ($name!=="coppermine") { //change coppermine to your actual coppermine folder name
        blocks(left);
    }

Do it for all theme on your site.
(https://coppermine-gallery.com/forum/proxy.php?request=http%3A%2F%2Fbatamweb.net%2F4leechers%2Fsengsaraatgmail.gif&hash=5023c7ba1bc4142435e406735fee30bc611c5a03)

DJMaze

I think you didn't understand my solution.

The blocks on the left are hardcoded and can't be made show/hide so move them all to the right.

Ah also good choice sengsara
There are 2 kinds of users in this world: satisfied and complainers.
Why do we never hear something from the satisfied users?
http://coppermine-gallery.net/forum/index.php?topic=24315.0

dcooper

Sengsara,

I tried your code change as a solution and i got no result. It still opens with left block. Any other possible solutions?

sengsara

It should work.
This is a PHPNuke issue, not coppermine.
What Nuke Theme are you using?
Are you sure you change 'coppermine' to your actual Coppermine folder name?
A link would help.
(https://coppermine-gallery.com/forum/proxy.php?request=http%3A%2F%2Fbatamweb.net%2F4leechers%2Fsengsaraatgmail.gif&hash=5023c7ba1bc4142435e406735fee30bc611c5a03)

dcooper

Under /* Function themeheader()

I changed:
       $theuser = "&nbsp;&nbsp;<a href=\"modules.php?name=Your_Account\">Create an account";
    } else {
        $theuser = "&nbsp;&nbsp;Welcome $username!";
    }
    $public_msg = public_message();
    $tmpl_file = "themes/OSN-Sky/header.html";
    $thefile = implode("", file($tmpl_file));
    $thefile = addslashes($thefile);
    $thefile = "\$r_file=\"".$thefile."\";";
    eval($thefile);
    print $r_file;
    blocks(left);
    $tmpl_file = "themes/OSN-Sky/left_center.html";
    $thefile = implode("", file($tmpl_file));
    $thefile = addslashes($thefile);
    $thefile = "\$r_file=\"".$thefile."\";";
    eval($thefile);
    print $r_file;
}


To:
$theuser = "&nbsp;&nbsp;<a href=\"modules.php?name=Your_Account\">Create an account";
    } else {
        $theuser = "&nbsp;&nbsp;Welcome $username!";
    }
    $public_msg = public_message();
    $tmpl_file = "themes/OSN-Sky/header.html";
    $thefile = implode("", file($tmpl_file));
    $thefile = addslashes($thefile);
    $thefile = "\$r_file=\"".$thefile."\";";
    eval($thefile);
    print $r_file;
    if ($name!=="coppermine") { //change coppermine to your actual coppermine folder name
    blocks(left);
    }
    $tmpl_file = "themes/OSN-Sky/left_center.html";
    $thefile = implode("", file($tmpl_file));
    $thefile = addslashes($thefile);
    $thefile = "\$r_file=\"".$thefile."\";";
    eval($thefile);
    print $r_file;
}


Name and path to "coppermine" dir is:    /modules/coppermine


Thank you, Steve

sengsara

(https://coppermine-gallery.com/forum/proxy.php?request=http%3A%2F%2Fbatamweb.net%2F4leechers%2Fsengsaraatgmail.gif&hash=5023c7ba1bc4142435e406735fee30bc611c5a03)

DJMaze

   print $r_file;
    if ($name!=="coppermine") { //change coppermine to your actual coppermine folder name
    blocks(left);
    }
should be    print $r_file;
    if ($name != "coppermine") { //change coppermine to your actual coppermine folder name
    blocks(left);
    }


!== doesn't work it must be !=
There are 2 kinds of users in this world: satisfied and complainers.
Why do we never hear something from the satisfied users?
http://coppermine-gallery.net/forum/index.php?topic=24315.0

sengsara

Thanks DJMaze, my mistake.
But you know what? It works on Apache/PHP/Win32!
Bugs?
(https://coppermine-gallery.com/forum/proxy.php?request=http%3A%2F%2Fbatamweb.net%2F4leechers%2Fsengsaraatgmail.gif&hash=5023c7ba1bc4142435e406735fee30bc611c5a03)

dcooper

I cannot get either to work on Apache/PHP/Solaris. :(