Page 10 of 124 FirstFirst ... 891011122060110 ... LastLast
Results 91 to 100 of 1238
  1. #91
    Join Date
    Jan 2006
    Location
    Toronto, Ontario, Canada
    Posts
    183
    Plugin Contributions
    3

    Re: Admin Profiles Support Thread

    I'm running 1.3.0.2. all is well except the menus and pages I want to disable still appear. If the user clicks on a particular item which I have "unchecked", they get the denied access page. However the links are still there.
    I checked the db and the admin headings are correct in the sense that user id 2 does not have all the headings listed. But when user id 2 logs in, page loads, everything shows up.

    I have another installation of the same version for another client and it seems to work flawlessly.

    Any suggestions ?
    Ahmad Rahman
    TRUST IT | web site design and development
    mobile: 416.828.0224 | email: [email protected]
    www.trustit.ca

    For IT solutions how you want IT, when you want IT, TRUST IT.

  2. #92
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    81

    Default Re: Admin Profiles Support Thread

    The menu options are driven by the files in the /admin/includes/boxes files/folders. Perhaps these have been reverted back to old versions on your site somehow?
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  3. #93
    Join Date
    Jan 2006
    Location
    Toronto, Ontario, Canada
    Posts
    183
    Plugin Contributions
    3

    Idea or Suggestion Re: Admin Profiles Support Thread

    Dr., i checked, and you were correct... i overwrote the files and ta-da !

    btw... do you ever sleep or NOT be on this site ?

    Thanks again !
    Ahmad Rahman
    TRUST IT | web site design and development
    mobile: 416.828.0224 | email: [email protected]
    www.trustit.ca

    For IT solutions how you want IT, when you want IT, TRUST IT.

  4. #94
    Join Date
    Sep 2004
    Posts
    120
    Plugin Contributions
    0

    Default Re: Admin Profiles Support Thread

    Quote Originally Posted by kuroi
    Step 1: is register_globals ON or OFF on your server? and has it changed recently?
    It's set to OFF with .htaccess
    php_flag session.use_trans_sid off
    php_flag register_globals off

  5. #95
    Join Date
    Sep 2004
    Posts
    120
    Plugin Contributions
    0

    Default Re: Admin Profiles Support Thread

    Quote Originally Posted by kuroi
    Step 2: Has the orange icon disappeared from all users? Has the "edit permissions" button also disappeared?
    Yes, all users are missing orange icon and button is gone too.

  6. #96
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: Admin Profiles Support Thread

    Quote Originally Posted by teva
    Yes, all users are missing orange icon and button is gone too.
    This is sounding as though your admin.php file may have somehow been overwritten. However I have checked the two add-ons that you metioned earlier and would not expect either to do this.

    Could you check whether or not the results of the first two code patches that you did during Admin Profiles installation are still intact. Here's a reminder of them ...
    In admin\admin.php find the line containing the constant ICON_RESET (line 203 in a clean install of ZC 1.3). Insert a new line immediately afterwards containing the following ...
    <?php echo '<a href="' . zen_href_link(FILENAME_ADMIN_CONTROL, 'adminID=' . $admins->fields['admin_id']) . '">' . zen_image(DIR_WS_IMAGES . 'icon_permissions.gif', ICON_PERMISSIONS) . '</a>'; ?>

    In admin\admin.php find the 2nd line containing the constant IMAGE_DELETE (line 427 in a clean install of ZC 1.3 with the above patch installed). Insert a new line immediately afterwards containing the following ...
    <br /><a href="' . zen_href_link(FILENAME_ADMIN_CONTROL, 'adminID=' . $adminInfo->admin_id) . '">' . zen_image_button('button_edit_permissions.gif', IMAGE_PERMISSIONS) . '</a>
    Kuroi Web Design and Development | Twitter

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

  7. #97
    Join Date
    Dec 2005
    Posts
    9
    Plugin Contributions
    0

    Default Re: Admin Profiles Support Thread

    I did a fresh install of Zen Cart version 1.3.0.1. Then I upgraded to 1.3.0.2. Then I installed Admin Profiles.

    Step 1: I don't think I am using a DB prefix
    Step 2: copied all files over to server in proper places
    Step 3: Ctrl-copied code so I wouldn't make a typo
    Step 4: didn't do
    Step 5: didn't do
    Step 6: When I logged in, I got this message and no headers, so I couldn't go to Tools

    1146 Table 'designit_zc2.admin_menu_headers' doesn't exist
    in:
    [select id from admin_menu_headers where header = 'Configuration']
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.


    I hope you can help me. I really want this to work.

    Thanks so much.

  8. #98
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: Admin Profiles Support Thread

    Quote Originally Posted by cindyjw
    I did a fresh install of Zen Cart version 1.3.0.1. Then I upgraded to 1.3.0.2. Then I installed Admin Profiles.

    Step 1: I don't think I am using a DB prefix
    Step 2: copied all files over to server in proper places
    Step 3: Ctrl-copied code so I wouldn't make a typo
    Step 4: didn't do
    Step 5: didn't do
    Step 6: When I logged in, I got this message and no headers, so I couldn't go to Tools

    1146 Table 'designit_zc2.admin_menu_headers' doesn't exist
    in:
    [select id from admin_menu_headers where header = 'Configuration']
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.


    I hope you can help me. I really want this to work.

    Thanks so much.
    I'm surprised that this hasn't been raised before. You still need to do step one to create the tables that Admin Profiles uses. You just don't need to edit the SQL first to add a DB prefix. However, the installation instructions could be a little more clear on this. I will make them so with the next update.
    Kuroi Web Design and Development | Twitter

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

  9. #99
    Join Date
    Dec 2005
    Posts
    9
    Plugin Contributions
    0

    Default Re: Admin Profiles Support Thread

    Quote Originally Posted by kuroi
    I'm surprised that this hasn't been raised before. You still need to do step one to create the tables that Admin Profiles uses. You just don't need to edit the SQL first to add a DB prefix. However, the installation instructions could be a little more clear on this. I will make them so with the next update.

    Since I am fairly new to this coding stuff, could you explain step one to me a little more. I don't know where to go to go or what to do exactly.

    Thank you so much!

  10. #100
    Join Date
    Dec 2005
    Posts
    9
    Plugin Contributions
    0

    Default Re: Admin Profiles Support Thread

    Quote Originally Posted by cindyjw
    Since I am fairly new to this coding stuff, could you explain step one to me a little more. I don't know where to go to go or what to do exactly.

    Thank you so much!

    I got it fixed. My server host helped me. He imported the install_admin_profiles.sql file into my database. The problem is...I don't know how he did that. I should have asked him. Could you make that clear on your instructions for future users?

    This mod is fabulous! Thank you so much. Is there a way to choose which is the opening default page when they log in?

    Thanks again!

 

 
Page 10 of 124 FirstFirst ... 891011122060110 ... LastLast

Similar Threads

  1. v150 Admin New Order [Support Thread]
    By lhungil in forum Addon Admin Tools
    Replies: 121
    Last Post: 5 Feb 2021, 07:51 PM
  2. v150 CSS Buttons for Admin [Support Thread]
    By lat9 in forum All Other Contributions/Addons
    Replies: 19
    Last Post: 24 Dec 2015, 09:13 PM
  3. Admin-Editable Sidebox - Support Thread
    By kuroi in forum Addon Sideboxes
    Replies: 331
    Last Post: 29 Oct 2014, 04:15 AM
  4. v151 Blue Admin [Support Thread]
    By vvomble in forum Addon Templates
    Replies: 11
    Last Post: 27 May 2013, 09:43 PM
  5. [Support Thread] IE only JavaScripts and Stylesheets Addon
    By Meshach in forum All Other Contributions/Addons
    Replies: 16
    Last Post: 31 May 2011, 08:18 PM

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
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR