OpenCart Local Login - opencart

I have OpenCart on my laptop. There is a Bitnami file in my C drive and inside it is a file called "opencart-3.0.3.6-1". Inside this file are many files.
When I type this number into the address bar: 127.0.0.1:81, a screen comes up with Bitnami at the top and "Awesome! OpenCart is now installed." Underneath it says "Access OpenCart". When I click Access OpenCart, a page comes up with "Your Store" at the top and some random products like phones and monitors for sale. So this must be OpenCart on my laptop.
I don't know what to do next. I want to get to a dashboard or somewhere I can edit this page with my own products but I don't know how to get to there. When I type this "http://127.0.0.1:81/opencart/admin/" into the address bar, I get a login screen asking for username and password but I don't have a username or password. Can anyone tell me how I can acquire a username and password? Thank you!

When installing you should have seen a pre-installation check screen followed by a configuration screen, where you would be asked to enter the database name, database user, password etc, as well as choosing an administrator username and password.
If somehow you managed to install it without doing those things, then you need to open up your database using something like MySQL Workbench of phpMyAdmin and navigate to the user table (default oc_user). There you would be able to see the administrator user, password and salt. The password will be encrypted.
According to this page you can reset the password by following the instructions supplied. Good luck!

Related

How to change password used to logon to Chrome RDP for Google Cloud Platform

I am having trouble logging in to my virtual machine. When I click the RDP button on the virtual machine page it opens a window requesting a username and password (photo attached). I set this up a long time ago so I can not remember the password, I have tried a couple of common passwords I use as well as the password to my google account but none have worked. How can I recover or change this username and password. I don’t know if this is the right place to ask but I have tried contacting google cloud support and it seems I can not get this kind of help without paying.
The login page?
Edit: For anyone else looking for the answer you need to go the the VM page in google cloud console, click the 3 dots next to the RDP button and select create windows password. This will give you a temp password which you can change after logging in
If you have permissions compute.instances.admin and iam.serviceAccountUser by following the document you can generate new passwords for your windows VM.

Coldfusion 11 (Multi-instance) - Administrator password reset not working

I'm trying to reset the CFAdmin password on a CF11 Enterprise server that has multiple CF instances running on the same server. The admin password on one of the instances is unknown, so we're trying to recover/change to a known password.
I've tried using the passwordreset.bat provided by Adobe, but after restarting the instance with lost admin password, that didn't work.
I also tried disabling the password all together to access the admin console per adobe. This gets me into the admin console temporarily, but I'm not able to actually change the password since I don't know the old password. Leaving the old PW blank, fails too. This is not a viable long-term option, we must have a password.
I even tried editing the password.properties file to type a password and set encryption=false, but that didn't work either.
I think I've exhausted all the standard ways to reset the password to no avail. Is there something else that I should do because it's a multi-instance setup? Is there some way to point it to the specific instance I want to change?

TikiWiki user management

How do I manage users of our tikiwiki?
The tiki process on the server is ran under my name. I am the user of the tikiwiki, but I am not sure I am an admin user.
Most likely not but question one is: How do I find that out?
(my Admin Menu is empty)
Some user contacted me saying her account is "Locked". It so happened that there is no one else to restore it, but me.
Can anyone help where to look? I only used my tikiwiki account to limited extent. Just wrote couple of articles. But never administered.
There is always a built in user in Tiki called "admin" and that is in a group called "Admins" which has permission to do everything, so it sounds like your user isn't in that group.
If the admin user was set up with a valid email account (and you know it and have access to it) then you can get the password reset and a link to make a new one will be emailed to that address. If you can access the installer or the database then there are various other options on how to recover the admin login here: https://doc.tiki.org/Lost+admin+password
Once you have done this and can administer the Tiki again you should add your usual user to the Admins group.
To unlock another user's account you will need to either access the user admin list (once you have admin login again) or if you can get to the database you should be able to clear the relevant field in the database directly using phpmyadmin or similar as a last resort (ask again if you need this much detail).

ColdFusion - How to read user name instead of login name

I have inherited a ColdFusion application (and I'm a noob in ColdFusion) which uses GetAuthUser() to read the name of the logged in user, and then appends #mycompany.com to send emails.
We are going to be migrated to a new domain, under which we are receiving user names that do not match our email addresses.
For example, I login as rickhodder and my email address is rickhodder#mycompany.com, and my login under the new domain is C12345, but my email address will still be rickhodder#mycompany.com.
From some research online I see that ColdFusion doesnt go against active directory, it goes against the NT Domain.
Is there a way under ColdFusion to read the email associated with a user?
I don't think CF is going to provide you with that information 'out of the box'. You probably want to look at the CFLDAP functionality and use that to look up user information from your AD server, which ought to include the information you need.
If you go this route, you can use your own details to connect for development, but make sure you get an account created to do the LDAP connections with in production. It should have password set not to expire and not have permission to login or do much else. It's likely your domain admin will know what you're after far better than I can explain.

Django: can't set password for superuser on command line

In the Django tutorial, I'm at the part that says "You'll see a message for each database table it creates, and you'll get a prompt asking you if you'd like to create a superuser account for the authentication system. Go ahead and do that." I'm using Django 1.2.3.
In case it's relevant, I'm using SQLite, and in the settings file under mysite, I didn't set a password because you're supposed to leave it blank for SQLite. But right now I'm setting up the superuser account in the command line and it's demanding that I set a password. And it won't let me type.
So I leave it blank, and hit enter (which does work), and it asks me to confirm my password. I hit enter again. And it tells me, "Error: Your passwords didn't match."
Is there a reason it won't let me enter any text? Is there a way to get around this? This is just a development server, so I'm OK if the solution involves not setting a password at all, but it's not letting me do that either.
OK, so I know I have to enter something non-empty. The problem is, the command line is literally not letting me type there. I hit keys and the little blinking underscore doesn't move. All it will allow me to do is hit enter while it's still blank, but then the empty passwords don't match. I want to know why it's not letting me type.
You are not suppose to see the password you are typing. Just type your password, repeat exactly same password when prompted and you should be ok.
The Django superuser password is independent of the password used to authenticate with the database server. The reason it won't let you set a non-blank password is because it's a security risk; Django doesn't care that your app will never see public use.
The password for the authentication module is separate from your database. You'll have to set a non-blank password for the superuser.