password – PHP Event Calendar https://phpeventcalendar.com Modern Event Calendar For Your Website. Wed, 20 Nov 2024 05:11:23 +0000 en-US hourly 1 https://wordpress.org/?v=7.0.4 Is there any way to have individual logins so that each user can manage their own calendar only? https://phpeventcalendar.com/knowledge-base/is-there-any-way-to-have-individual-logins-so-that-each-user-can-manage-their-own-calendar-only/ Wed, 20 Nov 2024 05:09:16 +0000 https://phpeventcalendar.com/?p=1531 Question:
Hi, is there any way to have individual logins so that each user can manage their own calendar only? I have a group of 50 calendars but I need them to only manage their own only with a super admin available to manage them all.

Solution:
Here’s the SQL query to insert new user into the calendar database table ‘pec_users‘ with user role as “user“.

You would need to simply replace with some real user data. The password can be encode here.

INSERT INTO pec_users
(access_key, activated, admin_id, role, first_name, last_name, active_calendar_id, company, username, password, email, timezone, language, theme, kbd_shortcuts, created_on, updated_on)
VALUES
(NULL, 1, NULL, ‘user’, ‘Joe’, ‘Blow’, ‘0’, ‘Rand Corp’, ‘joeblow’, md5(‘123456’), ‘joeblow@example.com’, ‘+6’, ‘English’, ‘default’, 1, NOW(), NOW());

<br>

Users will only see their own calendars.

]]>
Change the admin password of admin? https://phpeventcalendar.com/knowledge-base/change-the-admin-password-of-admin/ Wed, 20 Nov 2024 04:36:43 +0000 https://phpeventcalendar.com/?p=1504 Generate a new password here and then update the password field in pec_users table. It is recommended to use a password that is at least 16 characters in length.

]]>
Default demo login username and password https://phpeventcalendar.com/knowledge-base/default-demo-login-username-and-password/ Wed, 20 Nov 2024 04:29:00 +0000 https://phpeventcalendar.com/?p=1501 The default login name is 

admin

password

123456

You can also access the online demo by clicking the “demo” link on the top menu.

https://quickproductdemo.com/phpeventcal

]]>