Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 2 of 2

Thread: Creating a Super Admin

  1. #1
    jrlangley is offline Junior Member
    Join Date
    May 2011
    Posts
    6

    Default Creating a Super Admin

    Hi all

    The previous super admin for our site has left the company. Unfortunately he deleted the one and only super admin account on our site. I have an admin account, but I'd like to promote it to a super admin. I'm using ML 7.1.1.0. Anyone have any ideas how to do this?

  2. #2
    webopius is offline Senior Member
    Join Date
    Nov 2008
    Location
    London, UK
    Posts
    440

    Default

    Use SQL Server Manager studio to access your site's database and run this SQL:

    update Customer
    set IsAdmin = 3
    where Email = 'youremail'


    Dont forget the where clause otherwise everyone in your site will be a Super admin user!!