Page 22 of 124 FirstFirst ... 1220212223243272122 ... LastLast
Results 211 to 220 of 1238
  1. #211
    Join Date
    Feb 2007
    Posts
    1,704
    Plugin Contributions
    0

    Default Re: Admin Profiles Support Thread

    thanks for your help, im happy now, i can now pass the site onto my parter and let him get the products online why i get on and do other things, like watch commic releaf

  2. #212
    Join Date
    May 2005
    Location
    Brussels belgium
    Posts
    203
    Plugin Contributions
    0

    Idea or Suggestion Re: Admin Profiles Support Thread

    Hi,

    it's maybe beter to use a system like layout_controller.php to give access to the differents modules ?



    Greetz,

    Chris
    Zen cart or nothing !!

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

    Default Re: Admin Profiles Support Thread

    Quote Originally Posted by titangen View Post
    it's maybe beter to use a system like layout_controller.php to give access to the differents modules ?
    If you mean that Admin access control would be best integrated into the Admin rather than bolted on the side, then I agree. If you're saying that you prefer all that clicking necessary to set a single sidebox, then ... errr .... why?
    Kuroi Web Design and Development | Twitter

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

  4. #214
    Join Date
    Jul 2006
    Posts
    40
    Plugin Contributions
    0

    Default Re: Admin Profiles Support Thread

    Quote Originally Posted by gothstone View Post
    I'm rebuilding my site with zencart 1.3.7 and useing admin profiles 1.0.6. All has been working well untill I added in SEO URL's 3.0.0 beta 1 . It will not show up in admin, and in the admin profiles screen it has a check box. But if I check the box and hit save changes it reverts to unchecked. I tried manualy adding 106, 1 to the admin allowed pages table, and that fixed the problem, and allows me to use SEO urls. However if I go back to admin profiles and make any change, I loose access again. I think this is related to the fact that there is no admin boxes file for this mod. Any suggestions? I will cross post this in the SEO URL's topic since it is a direct confilict between the mods. Thanks for any help!
    Hi,
    I am having exactly the same problem, and adding 106 does not seem to make the menu reappear as well...

    Thanks

  5. #215
    Join Date
    Feb 2007
    Posts
    73
    Plugin Contributions
    0

    Default Re: Admin Profiles Support Thread

    Hi all,

    Ok I have added this mod to my site, ran the sql file and created the tables. Now when I log in to the admin section I get this error:

    1146 Table 'diecast_sales.zen_admin_visible_headers' doesn't exist
    in:
    [select admin_id from zen_admin_visible_headers where header_id = '1']
    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.
    Any ideas, I am Admin_ID1 and everything seems to be in place as far as the tables are concerned.

    Please HELP.

    Thanks much in advance.

    RSprinkel
    RSprinkel

  6. #216
    Join Date
    Feb 2007
    Posts
    73
    Plugin Contributions
    0

    Default Re: Admin Profiles Support Thread

    Ok got this fixed. After looking at my tables in the db, I noticed the tables it added did not have the zen_ in front like the others. I added the zen_ and all works ok with the exception I cannot See in the Admin/Tools/Admin Settings anywhere to edit permissions.

    I am logged in as Admin 1 and most of the pages are off limits to me.

    Anyhelp on this.

    Thanks.
    RSprinkel

  7. #217
    Join Date
    Feb 2007
    Posts
    73
    Plugin Contributions
    0

    Default Re: Admin Profiles Support Thread

    Ok Update.

    I found that after installing this mod, I had to actually leave the site and close down the browser and login again. Everything works now. Just have alot of Boxes (step 4) to do with all the other mods I have installed it seems as I don't have access to the ones I MAINLY Need access too.

    Thanks for this great Mod.

    ZENCART Rocks as well as the Contributors!!
    RSprinkel

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

    Default Re: Admin Profiles Support Thread

    Quote Originally Posted by Hemma View Post
    I am having exactly the same problem
    Sorry Hemma. For the time Admin Profiles and SEO URLs are not compatible.
    Kuroi Web Design and Development | Twitter

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

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

    Default Re: Admin Profiles Support Thread

    Quote Originally Posted by RSprinkel View Post
    I found that after installing this mod, I had to actually leave the site and close down the browser and login again.
    Glad you found a way through this, and quite quickly too from the timestamps on your posts.

    The closing and restarting of the browser ends a "session" and starts a fresh one. Can't say I've ever had to do this, but it did prove to be the solution for somebody earlier in this thread too.
    Kuroi Web Design and Development | Twitter

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

  10. #220
    Join Date
    May 2006
    Location
    Japan
    Posts
    326
    Plugin Contributions
    1

    Default Re: Admin Profiles Support Thread

    can I make sure I am doing this right with the code for the extra boxes:
    Say I have super_orders_customers_dhtml.php

    The code for this should go from:

    PHP Code:
    <?php
    $za_contents
    [] = array('text' => BOX_CUSTOMERS_SUPER_ORDERS'link' => zen_href_link(FILENAME_SUPER_ORDERS'''NONSSL'));
    $za_contents[] = array('text' => BOX_CUSTOMERS_SUPER_BATCH_STATUS'link' => zen_href_link(FILENAME_SUPER_BATCH_STATUS'''NONSSL'));
    $za_contents[] = array('text' => BOX_CUSTOMERS_SUPER_BATCH_FORMS'link' => zen_href_link(FILENAME_SUPER_BATCH_FORMS'''NONSSL'));
    ?>
    to:

    PHP Code:
    <?php
      
    if (!defined('IS_ADMIN_FLAG')) {
       die(
    'Illegal Access');
      }

    $za_contents[] = array('text' => BOX_CUSTOMERS_SUPER_ORDERS'link' => zen_href_link(FILENAME_SUPER_ORDERS'''NONSSL'));
    $za_contents[] = array('text' => BOX_CUSTOMERS_SUPER_BATCH_STATUS'link' => zen_href_link(FILENAME_SUPER_BATCH_STATUS'''NONSSL'));
    $za_contents[] = array('text' => BOX_CUSTOMERS_SUPER_BATCH_FORMS'link' => zen_href_link(FILENAME_SUPER_BATCH_FORMS'''NONSSL'));
      foreach (
    $options as $key => $value)
      if (
    page_allowed($value['page'])=='true')
        
    $za_contents[] = array('text' => $value['box'], 'link' => zen_href_link($value['page'], '''NONSSL'));
      
    ?>
    Skin Evolution.
    Lynda.com,its a great place to learn.
    Camelot Hosting,it's where my site calls home!

    E-Start your Zen-Cart,KH is the Man, Thanks for all the hard work!

 

 

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