Share

nukelan 2.0

The forum address has changed, you have been automatically redirected. Please update any bookmarks to use the new URL.

Subscribe

Access denied error

You are viewing a single message from this topic. View all messages.

  1. 2005-09-29 13:19:29 UTC
    Yes same Problem !!!! In Readme stands Testet with PHP-Nuke 7.7. :D Yes i have testet too, and its work not.

    If you write tested, then test it!

    Nukelan coder has add new security features in his module. But you can use it if u modifie 1 file.

    Ok, following steps are required for using NukeLan with PHPNuke

    Open admin.php and search ...

    if($rpwd == $pwd && $rpwd != "") {
    $admintest = 1;
    }

    After $admintest = 1; write

    define('ADMIN_FILE',1);

    Also

    if($rpwd == $pwd && $rpwd != "") {
    $admintest = 1;
    define('ADMIN_FILE',1);
    }

    Next step

    Search

    while ($row = $db->sql_fetchrow($result)) {
    if (file_exists("modules/$row[title]/admin/index.php") AND file_exists("modules/$row[title]/admin/links.php") AND file_exists("modules/$row[title]/admin/case.php")) {
    include("modules/$row[title]/admin/case.php");
    }
    }

    add this define Line too, after add looks so.

    while ($row = $db->sql_fetchrow($result)) {
    if (file_exists("modules/$row[title]/admin/index.php") AND file_exists("modules/$row[title]/admin/links.php") AND file_exists("modules/$row[title]/admin/case.php")) {
    define('ADMIN_FILE',1);
    include("modules/$row[title]/admin/case.php");
    }
    }


    mfg
< Previous | 1 | Next >

Add a Reply

This forum does not allow anonymous participation.

Log in to add a reply. Not registered? Create an account to participate and receive email updates when replies are posted to this topic.