Page 96 of 124 FirstFirst ... 46869495969798106 ... LastLast
Results 951 to 960 of 1233
  1. #951
    Join Date
    Mar 2009
    Posts
    64
    Plugin Contributions
    0

    Default Re: Admin Profiles Support Thread

    Quote Originally Posted by Crusader View Post
    Problem solved. It just needed reading more pages in this thread. I have applied patch from page #87, post #865 sucessfully.
    Hooray for you! I've been working on my admin problem for 2 full days now. Don't think it's related to this thread tho, but searching brought me here.

  2. #952
    Join Date
    Mar 2010
    Posts
    4
    Plugin Contributions
    0

    Default Re: Admin Profiles Support Thread

    Please help!!
    I received this error message when trying upload the files via SQL Query Executor:
    1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'in:

  3. #953
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,655
    Plugin Contributions
    25

    Default Re: Admin Profiles Support Thread

    Quote Originally Posted by onnengling View Post
    I received this error message when trying upload the files via SQL Query Executor:
    1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'in:
    You need to post the full error message for us to be able to help. Information about what you were doing at the time and the version numbers of your Zen Cart and Admin Profile mods would help too.
    See and test drive Zen Cart's free templates at zencarttemplates.info

    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  4. #954
    Join Date
    Mar 2010
    Posts
    4
    Plugin Contributions
    0

    Default Re: Admin Profiles Support Thread

    Pls ignore my previous message as I had execute the step incorrectly.

    I'm now stuck with Step 3 of the installation on Patch One instruction.
    There are no line containing constant ICON_RESET in my admin.php file. I must have missed something.... Please help..

    I'm using Zen Cart V1.3.8a.

  5. #955
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,655
    Plugin Contributions
    25

    Default Re: Admin Profiles Support Thread

    Quote Originally Posted by onnengling View Post
    Pls ignore my previous message as I had execute the step incorrectly.

    I'm now stuck with Step 3 of the installation on Patch One instruction.
    There are no line containing constant ICON_RESET in my admin.php file. I must have missed something.... Please help..

    I'm using Zen Cart V1.3.8a.
    It's at line 193 give or take a line.
    See and test drive Zen Cart's free templates at zencarttemplates.info

    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  6. #956
    Join Date
    Mar 2010
    Posts
    4
    Plugin Contributions
    0

    Default Re: Admin Profiles Support Thread

    Additional information: I'm fiollowing Install Notes for Admin Profiles v1.0.7.1.

    My admin.php file content attached:
    <?php
    //
    // +----------------------------------------------------------------------+
    // |zen-cart Open Source E-commerce |
    // +----------------------------------------------------------------------+
    // | Copyright (c) 2006 The zen-cart developers |
    // | |
    // | http://www.zen-cart.com/index.php |
    // | |
    // | Portions Copyright (c) 2003 osCommerce |
    // +----------------------------------------------------------------------+
    // | This source file is subject to version 2.0 of the GPL license, |
    // | that is bundled with this package in the file LICENSE, and is |
    // | available through the world-wide-web at the following url: |
    // | http://www.zen-cart.com/license/2_0.txt. |
    // | If you did not receive a copy of the zen-cart license and are unable |
    // | to obtain it through the world-wide-web, please send a note to |
    // | license@zen-cart.com so we can mail you a copy immediately. |
    // +----------------------------------------------------------------------+
    // $Id: admin.php 4701 2006-10-08 01:09:44Z drbyte $
    //

    require('includes/application_top.php');

    $action = (isset($_GET['action']) ? $_GET['action'] : '');

    if (zen_not_null($action)) {

    switch ($action) {
    // demo active test
    case (zen_admin_demo()):
    $action='';
    $messageStack->add_session(ERROR_ADMIN_DEMO, 'caution');
    zen_redirect(zen_href_link(FILENAME_ADMIN));
    break;
    //-------------------------------------------------------------------------------------------------------------------------
    case 'insert':
    case 'save':
    case 'reset':
    $error = false;
    if ( ($action == 'insert') || ($action == 'reset') ){
    $password_new = zen_db_prepare_input($_POST['password_new']);
    $password_confirmation = zen_db_prepare_input($_POST['password_confirmation']);

    if (strlen($password_new) < ENTRY_PASSWORD_MIN_LENGTH) {
    $error = true;
    $messageStack->add(ENTRY_PASSWORD_NEW_ERROR, 'error');
    }
    if ($password_new != $password_confirmation) {
    $error = true;
    $messageStack->add(ENTRY_PASSWORD_NEW_ERROR_NOT_MATCHING, 'error');
    }
    }

    if ($error == false) {
    if (isset($_GET['adminID'])) $admins_id = zen_db_prepare_input($_GET['adminID']);
    $admin_name = zen_db_prepare_input($_POST['admin_name']);
    $admin_email = zen_db_prepare_input($_POST['admin_email']);
    $password_new = zen_db_prepare_input($password_new);
    $admin_level = zen_db_prepare_input($_POST['admin_level']);
    $password_new = zen_db_prepare_input($password_new);

    $sql_data_array = array(
    'admin_name' => $admin_name,
    'admin_email' => $admin_email,
    'admin_level' => (int)$admin_level
    );

    if ($action == 'insert') {

    $insert_sql_data = array('admin_pass' => zen_encrypt_password($password_new));
    $sql_data_array = array_merge($sql_data_array, $insert_sql_data);
    zen_db_perform(TABLE_ADMIN, $sql_data_array);
    $new_admin_id = zen_db_insert_id();
    $admins_id = $new_admin_id;

    } elseif ($action == 'save') {

    zen_db_perform(TABLE_ADMIN, $sql_data_array, 'update', "admin_id = '" . (int)$admins_id . "'");
    $db->Execute("UPDATE " . TABLE_CONFIGURATION . " set configuration_value='" . (int)$_POST['demo_status'] . "' where configuration_key='ADMIN_DEMO'");

    } elseif ($action == 'reset') {

    $update_sql_data = array('admin_pass' => zen_encrypt_password($password_new));
    $sql_data_array = array_merge($sql_data_array, $update_sql_data);
    zen_db_perform(TABLE_ADMIN, $sql_data_array, 'update', "admin_id = '" . (int)$admins_id . "'");

    } // end action check


    zen_redirect(zen_href_link(FILENAME_ADMIN, (isset($_GET['page']) ? 'page=' . $_GET['page'] . '&' : '') . 'adminID=' . $admins_id));

    } // end error check


    //echo $action;
    // zen_redirect(zen_href_link(FILENAME_ADMIN, (isset($_GET['page']) ? 'page=' . '&' : '') . 'adminID=' . $admins_id));
    break;

    //-------------------------------------------------------------------------------------------------------------------------
    case 'deleteconfirm':
    $new_admin_id = zen_db_prepare_input($_GET['adminID']);
    $db->Execute("delete from " . TABLE_ADMIN . " where admin_id = '" . (int)$new_admin_id . "'");

    zen_redirect(zen_href_link(FILENAME_ADMIN, 'page=' . $_GET['page']));
    break;
    //-------------------------------------------------------------------------------------------------------------------------
    } // end switch
    } // end zen_not_null
    ?>


    <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html <?php echo HTML_PARAMS; ?>>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>">
    <title><?php echo TITLE; ?></title>
    <link rel="stylesheet" type="text/css" href="includes/stylesheet.css">
    <link rel="stylesheet" type="text/css" href="includes/cssjsmenuhover.css" media="all" id="hoverJS">
    <script language="javascript" src="includes/menu.js"></script>
    <script language="javascript" src="includes/general.js"></script>
    <script type="text/javascript">
    <!--
    function init()
    {
    cssjsmenu('navbar');
    if (document.getElementById)
    {
    var kill = document.getElementById('hoverJS');
    kill.disabled = true;
    }
    }
    // -->
    </script>
    </head>
    <body onLoad="init()">
    <!-- header //-->
    <?php require(DIR_WS_INCLUDES . 'header.php'); ?>
    <!-- header_eof //-->

    <!-- body //-->
    <table border="0" width="100%" cellspacing="2" cellpadding="2">
    <tr>
    <!-- body_text //-->
    <td width="100%" valign="top">


    <?php echo zen_draw_separator('pixel_trans.gif', '1', '10'); ?>

    <table border="0" width="100%" cellspacing="0" cellpadding="0">
    <tr>
    <td class="pageHeading"><?php echo HEADING_TITLE; ?></td>
    </tr>
    </table>

    <?php echo zen_draw_separator('pixel_trans.gif', '1', '10'); ?>

    <table border="0" width="100%" cellspacing="0" cellpadding="0">
    <tr>
    <td valign="top">

    <table border="0" width="100%" cellspacing="0" cellpadding="2">
    <tr class="dataTableHeadingRow">
    <td width="10%" class="dataTableHeadingContent"><?php echo TABLE_HEADING_ADMINS_ID; ?></td>
    <td width="35%" class="dataTableHeadingContent"><?php echo TABLE_HEADING_ADMINS_NAME; ?></td>
    <td width="35%" class="dataTableHeadingContent"><?php echo TABLE_HEADING_ADMINS_EMAIL; ?></td>
    <td width="20%" class="dataTableHeadingContent" align="right"><?php echo TABLE_HEADING_ACTION; ?>&nbsp;</td>
    </tr>

    <?php
    $admins_query_raw = "select admin_id, admin_name, admin_email, admin_pass, admin_level from " . TABLE_ADMIN . " order by admin_name";
    $admins_split = new splitPageResults($_GET['page'], MAX_DISPLAY_SEARCH_RESULTS, $admins_query_raw, $admins_query_numrows);
    $admins = $db->Execute($admins_query_raw);

    while (!$admins->EOF) {
    if ((!isset($_GET['adminID']) || (isset($_GET['adminID']) && ($_GET['adminID'] == $admins->fields['admin_id']))) && !isset($adminInfo) && (substr($action, 0, 3) != 'new')) {
    $adminInfo = new objectInfo($admins->fields);
    }

    if (isset($adminInfo) && is_object($adminInfo) && ($admins->fields['admin_id'] == $adminInfo->admin_id)) {
    echo '<tr id="defaultSelected" class="dataTableRowSelected" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href=\'' . zen_href_link(FILENAME_ADMIN, 'page=' . $_GET['page'] . '&adminID=' . $admins->fields['admin_id'] . '&action=edit') . '\'">' . "\n";
    } else {
    echo '<tr class="dataTableRow" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href=\'' . zen_href_link(FILENAME_ADMIN, 'page=' . $_GET['page'] . '&adminID=' . $admins->fields['admin_id'] . '') . '\'">' . "\n";
    }
    ?>

    <td class="dataTableContent"><?php echo $admins->fields['admin_id']; ?></td>
    <td class="dataTableContent"><?php echo $admins->fields['admin_name']; ?></td>
    <td class="dataTableContent"><?php echo $admins->fields['admin_email']; ?></td>
    <td class="dataTableContent" align="right">
    <?php echo '<a href="' . zen_href_link(FILENAME_ADMIN, 'page=' . $_GET['page'] . '&adminID=' . $admins->fields['admin_id'] . '&action=edit') . '">' . zen_image(DIR_WS_IMAGES . 'icon_edit.gif', ICON_EDIT) . '</a>'; ?>
    <?php echo '<a href="' . zen_href_link(FILENAME_ADMIN, 'page=' . $_GET['page'] . '&adminID=' . $admins->fields['admin_id'] . '&action=delete') . '">' . zen_image(DIR_WS_IMAGES . 'icon_delete.gif', ICON_DELETE) . '</a>'; ?>
    <?php echo '<a href="' . zen_href_link(FILENAME_ADMIN, 'page=' . $_GET['page'] . '&adminID=' . $admins->fields['admin_id'] . '&action=resetpassword') . '">' . zen_image(DIR_WS_IMAGES . 'icon_reset.gif', ICON_RESET) . '</a>'; ?>
    </td>
    </tr>

    <?php
    $admins->MoveNext();
    }
    ?>

    <tr>
    <td colspan="2">

    <table border="0" width="100%" cellspacing="0" cellpadding="4">
    <tr>
    <td class="smallText" valign="top"><?php echo $admins_split->display_count($admins_query_numrows, MAX_DISPLAY_SEARCH_RESULTS, $_GET['page'], TEXT_DISPLAY_NUMBER_OF_ADMINS); ?></td>
    <td class="smallText" align="right"><?php echo $admins_split->display_links($admins_query_numrows, MAX_DISPLAY_SEARCH_RESULTS, MAX_DISPLAY_PAGE_LINKS, $_GET['page']); ?></td>
    </tr>
    </table>

    </td>
    </tr>

    <?php
    if (empty($action)) {
    ?>
    <tr>
    <td align="right" colspan="4" class="smallText">
    <?php
    echo '<a href="' . zen_href_link(FILENAME_ADMIN, 'page=' . $_GET['page'] . '&adminID=' . $adminInfo->admin_id . '&action=new') . '">' . zen_image_button('button_insert.gif', IMAGE_INSERT) . '</a>';
    ?>
    </td>
    </tr>
    <?php
    }
    ?>
    </table>
    </td>

    <?php
    $heading = array();
    $contents = array();

    switch ($action) {
    //-------------------------------------------------------------------------------------------------------------------------

    case 'new':
    $heading[] = array('text' => '<b>' . TEXT_HEADING_NEW_ADMIN . '</b>');
    $contents = array('form' => zen_draw_form('new_admin', FILENAME_ADMIN, 'action=insert', 'post', 'enctype="multipart/form-data"'));
    $contents[] = array('text' => TEXT_NEW_INTRO);
    $contents[] = array('text' => '<br>' . TEXT_ADMINS_NAME . '<br>' . zen_draw_input_field('admin_name', '', zen_set_field_length(TABLE_ADMIN, 'admin_name', $max=30)) );
    $contents[] = array('text' => '<br>' . TEXT_ADMINS_EMAIL . '<br>' . zen_draw_input_field('admin_email', '', zen_set_field_length(TABLE_ADMIN, 'admin_email', $max=30)) );
    $contents[] = array('text' => '<br>' . TEXT_ADMINS_PASSWORD . '<br>' . zen_draw_password_field('password_new', '', zen_set_field_length(TABLE_ADMIN, 'admin_pass', $max=20)) );
    $contents[] = array('text' => '<br>' . TEXT_ADMINS_CONFIRM_PASSWORD . '<br>' . zen_draw_password_field('password_confirmation', '', zen_set_field_length(TABLE_ADMIN, 'admin_pass', $max=20)) );
    $contents[] = array('text' => zen_draw_hidden_field('admin_level', '1') );
    $contents[] = array('align' => 'center',
    'text' => '<br>' . zen_image_submit('button_save.gif', IMAGE_SAVE) . '<a href="' . zen_href_link(FILENAME_ADMIN, 'page=' . $_GET['page'] . '&adminID=' . $_GET['adminID']) . '">' . zen_image_button('button_cancel.gif', IMAGE_CANCEL) . '</a>');
    break;

    //-------------------------------------------------------------------------------------------------------------------------
    case 'edit':
    $heading[] = array('text' => '<b>' . TEXT_HEADING_EDIT_ADMIN . '</b>');
    $contents = array('form' => zen_draw_form('edit_admin', FILENAME_ADMIN, 'page=' . $_GET['page'] . '&adminID=' . $adminInfo->admin_id . '&action=save', 'post', 'enctype="multipart/form-data"'));
    $contents[] = array('text' => TEXT_EDIT_INTRO);
    $contents[] = array('text' => '<br><b>' . $adminInfo->admin_id . '</b>&nbsp;-&nbsp;' . $adminInfo->admin_name . '</b>');
    $contents[] = array('text' => '<br>' . TEXT_ADMINS_NAME . '<br>' . zen_draw_input_field('admin_name', $adminInfo->admin_name, zen_set_field_length(TABLE_ADMIN, 'admin_name', $max=30)) );
    $contents[] = array('text' => '<br>' . TEXT_ADMINS_EMAIL . '<br>' . zen_draw_input_field('admin_email', $adminInfo->admin_email, zen_set_field_length(TABLE_ADMIN, 'admin_email', $max=30)) );

    $admin_current = $db->Execute("select admin_level from " . TABLE_ADMIN . " where admin_id='" . $_SESSION['admin_id'] . "'");
    /*
    if ($admin_current->fields['admin_level'] == '1') {
    $contents[] = array('text' => '<br>' . TEXT_ADMIN_LEVEL_INSTRUCTIONS);
    $contents[] = array(
    'text' => '<strong>' . TEXT_ADMINS_LEVEL . '</strong><br>' . zen_draw_input_field('admin_level', $adminInfo->admin_level, zen_set_field_length(TABLE_ADMIN, 'admin_level'))
    );
    */
    $demo_status= zen_get_configuration_key_value('ADMIN_DEMO');
    switch ($demo_status) {
    case '0': $on_status = false; $off_status = true; break;
    case '1': $on_status = true; $off_status = false; break;
    default: $on_status = false; $off_status = true; break;
    }
    if ($on_status == true) {
    $contents[] = array('text' => '<br>' . TEXT_ADMIN_DEMO);
    $contents[] = array('text' => '<strong>' . TEXT_DEMO_STATUS . '</strong><br>' . zen_draw_radio_field('demo_status', '1', $on_status) . '&nbsp;' . TEXT_DEMO_ON . '&nbsp;' . zen_draw_radio_field('demo_status', '0', $off_status) . '&nbsp;' . TEXT_DEMO_OFF);
    } else {
    $contents[] = array('text' => zen_draw_hidden_field('demo_status', 0) );
    }

    $contents[] = array('align' => 'center',
    'text' => '<br>' . zen_image_submit('button_save.gif', IMAGE_SAVE) . '<a href="' . zen_href_link(FILENAME_ADMIN, 'page=' . $_GET['page'] . '&adminID=' . $adminInfo->admin_id) . '">' . zen_image_button('button_cancel.gif', IMAGE_CANCEL) . '</a>');
    break;

    //-------------------------------------------------------------------------------------------------------------------------
    case 'resetpassword':
    $heading[] = array('text' => '<b>' . TEXT_HEADING_RESET_PASSWORD . '</b>');
    $contents = array('form' => zen_draw_form('reset_password', FILENAME_ADMIN, 'page=' . $_GET['page'] . '&adminID=' . $adminInfo->admin_id . '&action=reset',
    'post', 'enctype="multipart/form-data"') . zen_draw_hidden_field('admin_name', $adminInfo->admin_name) . zen_draw_hidden_field('admin_email', $adminInfo->admin_email) . zen_draw_hidden_field('admin_level', $adminInfo->admin_level));
    $contents[] = array('text' => TEXT_EDIT_INTRO);
    $contents[] = array('text' => '<br><b>' . $adminInfo->admin_id . '</b>&nbsp;-&nbsp;' . $adminInfo->admin_name . '</b>');
    $contents[] = array('text' => '<br>' . TEXT_ADMINS_PASSWORD . '<br>' . zen_draw_password_field('password_new', '', zen_set_field_length(TABLE_ADMIN, 'admin_pass', $max=25)) );
    $contents[] = array('text' => '<br>' . TEXT_ADMINS_CONFIRM_PASSWORD . '<br>' . zen_draw_password_field('password_confirmation', '', zen_set_field_length(TABLE_ADMIN, 'admin_pass', $max=25)) );
    $contents[] = array('align' => 'center',
    'text' => '<br>' . zen_image_submit('button_save.gif', IMAGE_SAVE) . '<a href="' . zen_href_link(FILENAME_ADMIN, 'page=' . $_GET['page'] . '&adminID=' . $adminInfo->admin_id) . '">' . zen_image_button('button_cancel.gif', IMAGE_CANCEL) . '</a>');
    break;


    //-------------------------------------------------------------------------------------------------------------------------
    case 'delete':
    $heading[] = array('text' => '<b>' . TEXT_HEADING_DELETE_ADMIN . '</b>');
    $contents = array('form' => zen_draw_form('delete_admin', FILENAME_ADMIN, 'page=' . $_GET['page'] . '&adminID=' . $adminInfo->admin_id . '&action=deleteconfirm'));
    $contents[] = array('text' => TEXT_DELETE_INTRO);
    $contents[] = array('text' => '<br><b>' . $adminInfo->admin_name . '</b>');
    $contents[] = array('align' => 'center',
    'text' => '<br>' . zen_image_submit('button_delete.gif', IMAGE_DELETE) . '<a href="' . zen_href_link(FILENAME_ADMIN, 'page=' . $_GET['page'] . '&adminID=' . $adminInfo->admin_id) . '">' . zen_image_button('button_cancel.gif', IMAGE_CANCEL) . '</a>');
    break;

    //-------------------------------------------------------------------------------------------------------------------------
    default:
    //-------------------------------------------------------------------------------------------------------------------------
    if (isset($adminInfo) && is_object($adminInfo)) {
    $heading[] = array('text' => '<b>' . $adminInfo->admin_name . '</b>');
    $contents[] = array('align' => 'center',
    'text' => '<a href="' . zen_href_link(FILENAME_ADMIN, 'page=' . $_GET['page'] . '&adminID=' . $adminInfo->admin_id . '&action=edit') . '">' . zen_image_button('button_edit.gif', IMAGE_EDIT) . '</a><a href="' . zen_href_link(FILENAME_ADMIN, 'page=' . $_GET['page'] . '&adminID=' . $adminInfo->admin_id . '&action=resetpassword') . '">' . zen_image_button('button_reset_pwd.gif', IMAGE_RESET) . '</a><a href="' . zen_href_link(FILENAME_ADMIN, 'page=' . $_GET['page'] . '&adminID=' . $adminInfo->admin_id . '&action=delete') . '">' . zen_image_button('button_delete.gif', IMAGE_DELETE) . '</a><br /><a href="' . zen_href_link(FILENAME_ADMIN_CONTROL, 'adminID=' . $adminInfo->admin_id) . '">' . zen_image_button('button_edit_permissions.gif', IMAGE_PERMISSIONS) . '</a>');
    }

    break;
    //-------------------------------------------------------------------------------------------------------------------------
    } // end switch action

    if ( (zen_not_null($heading)) && (zen_not_null($contents)) ) {
    echo '<td width="25%" valign="top">' . "\n";
    $box = new box;
    echo $box->infoBox($heading, $contents);
    echo '</td>' . "\n";
    }
    ?>

    </tr>
    </table>


    </td>
    <!-- body_text_eof //-->
    </tr>
    </table>
    <!-- body_eof //-->

    <!-- footer //-->
    <?php require(DIR_WS_INCLUDES . 'footer.php'); ?>
    <!-- footer_eof //-->
    <br>
    </body>
    </html>
    <?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>

    Thank you.

  7. #957
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,655
    Plugin Contributions
    25

    Default Re: Admin Profiles Support Thread

    Why are you cluttering the forum with unnecessary code? The line is there as described in the installation instructions. I suggest that you try Ctrl-F (or Command-F on a Mac) in whatever editor you're using, put in the string ICON_RESET, and it will take you straight there.
    See and test drive Zen Cart's free templates at zencarttemplates.info

    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  8. #958
    Join Date
    Mar 2010
    Posts
    4
    Plugin Contributions
    0

    Default Re: Admin Profiles Support Thread


    Sorry. I had read the word wrongly and also not aware that code is so long...

    I've now managed to find the line & completed the installation instruction. It works.
    Thank you very much...

  9. #959
    Join Date
    Mar 2010
    Posts
    4
    Plugin Contributions
    0

    Default Re: Admin Profiles Support Thread

    Hi,

    I tried looking through this forum but am having a hard time finding an answer to my problem; perhaps someone can help me.

    I have two Admin profiles set up, with IDs of 6 and 8, meaning they're not the original Admin profile. I was hoping to use one of the two as the main admin profile, but at some point, some of the permissions were deselected for that user. So now, both admin user accounts do not have access to modify admin permissions, and I can't access about 1/2 of my admin panel because of deselected permissions. Is there a way to edit permissions in an actual file on the server, or a way to reset my admin profiles so they can access all of the Admin panel?

    Thank you.
    Eric

    Zencart version: 5.1.12

  10. #960
    Join Date
    Mar 2010
    Posts
    4
    Plugin Contributions
    0

    Default Re: Admin Profiles Support Thread

    Anyone?

 

 
Page 96 of 124 FirstFirst ... 46869495969798106 ... LastLast

Similar Threads

  1. Admin-Editable Sidebox - Support Thread
    By kuroi in forum Addon Sideboxes
    Replies: 322
    Last Post: 22 May 2013, 10:07 AM
  2. Admin Simple Create Order [Support Thread]
    By ivan.kristianto in forum All Other Contributions/Addons
    Replies: 112
    Last Post: 5 Feb 2013, 08:33 AM
  3. PO Box Ban [support thread]
    By Steven300 in forum Addon Shipping Modules
    Replies: 23
    Last Post: 28 Oct 2009, 11:58 PM
  4. Admin Activity Report [support thread]
    By Steven300 in forum All Other Contributions/Addons
    Replies: 17
    Last Post: 6 Aug 2009, 12:47 PM
  5. Admin Users - Restrict Product Categories Support Thread
    By anafor in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 13 Aug 2008, 09:30 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •