UXWizz
WebsitePricingDemoTwitter (X)
  • Introduction
  • 🛠️ Installation
    • Requirements
      • Limitations
      • Server specs (CPU, RAM)
    • Installation guide
      • Uploading the script
      • Creating a MySQL database
      • Running the installer
    • Install on a new server
      • Ubuntu 20.04 (or higher)
      • DigitalOcean
    • Docker
      • Via Docker Compose
      • Standalone Docker image
    • Adding the tracking code
      • Automatic SPA pageview tracking
      • Add tracker to Next.js App
      • Add tracker to React Router App
    • Optimization tips
      • MySQL/MariaDB
      • Auto-delete old data (cron jobs)
      • Apache
    • Frequently Asked Questions
  • 🔧JavaScript API
    • Tags
    • Events
    • Hooks/callbacks
    • Other API functions
    • Session Recording
      • Ignore specific elements
  • 📖Guides and features
    • Goals (NEW!)
    • Ask AI (NEW!)
    • Basic usage
    • A/B testing
    • Usage tips
    • Dashboard user access level
    • Resetting the admin password
    • Database querying
    • Technical details
      • IP Geolocation
    • Troubleshooting
      • Agency
        • MultiDB
      • Dashboard
        • Refreshing dashboard sub-page leads to 404 error
        • Website iframe not loading (x-frame-options)
        • License says "invalid"
        • Updating Fails
      • Tracking
        • No data is being recorded
        • Can't include tracker via Google Tag Manager
        • The A/B test JS file is missing
      • WordPress
        • Cloudways 403 Forbidden screen on WordPress
        • NGINX 403 Forbidden screen on WordPress
    • Extending the dashboard
    • Support
    • Migrating to a new server
  • 🎓Useful Examples
    • Feedback form (polls)
    • Tracking 404 Pages
    • Tracking UTM parameters
    • Tracking Google Ads GCLID
    • Storing user device types
    • Track video playback
  • 📜About
    • Changelog
    • Personal Data Information
    • Privacy Policy (uxwizz.com)
    • Licenses and pricing
    • [Deprecated] License Subscriptions
Powered by GitBook
On this page

Was this helpful?

  1. Guides and features

Dashboard user access level

Currently the UXWizz user access levels are not that well structured. You normally want to use either level 5 (admin) or level 0 (read-only). UI is being implemented to show this information inside the dashboard.

You can see the up-to-date permissions/access levels inside the server/permissions.php file. Those were the permissions as of version 6.5.0:

// Permissions, 5 is the highest level

// Root
'UPDATE_PLATFORM' => 5,
'SET_LICENSE_KEY' => 5,
'CHANGE_DASHBOARD_SETTINGS' => 5,
'CHECK_LICENSE_KEY' => 5,
'SET_GPT_API_KEY' => 5,

// Administrator
'ADD_USER' => 4,
'DELETE_USER' => 4,
'SET_USER_DATA' => 4,
'SET_USER_LEVEL' => 4,
'SET_USER_MAX_DOMAINS' => 4,
'CHANGE_DOMAIN_ACCESS' => 4,
'GET_USERS_LIST' => 4,
'VIEW_DB_STATS' => 4,
'SET_OWN_USER_DATA' => 4,
'UPDATE_AB_TESTS' => 4,
'CHANGE_SETTINGS' => 4,
'CHANGE_GPT_MODEL' => 4,

// Analyst
'REMOVE_TAG' => 3,
'ADD_TAG' => 3,
'SET_RECORD_LIMIT' => 3 ,
'DELETE_RECORDED_CLIENT' => 3,
'CHANGE_OWN_DOMAIN_ACCESS' => 3,
'CHAT_WITH_AI' => 3,

'SHARE_RECORDING' => 1,

A user with level 2 will have access to all actions that require level 2 or less (2, 1, 0).

PreviousUsage tipsNextResetting the admin password

Last updated 8 months ago

Was this helpful?

📖