Check out stuck at "Please wait" - opencart

enter image description here
im using parsian-bank Extension for opencart
When attempting to complete an order the Please Wait! message comes up and the order is processed correctly but the browser does not take the user to the checkout/success page instead it just remains on the confirmation page displaying Please Wait!
please help me im use parsian-bank Extension

Related

Filter data in django admin inline create view

this is my first post here and im hoping to find a solution for my situation:
The thing is... I got a admin inline who show the relate info of a model. by this, i can see which contract_product belongs to current client.
When im creating a new object in the inline, aka click in the following button
enter image description here
I cant see a list of option as follow:
enter image description here
The problem is... the client must see only their products, but here i see all products for all type of clients?
PS: product and client has a direct relationship.
Hope someone can understand my problem and helps me!
Theres a kt if thing i've tried far now, but nothing succesful to talk about

How to ask input from a QML Dialog multiple times?

I am not very experienced with Qt and I have trouble doing what I want.
In my application, I search for archive files with password on a disk (that part works) and I want to ask the user for the password each time I find one new encrypted archive.
If I find multiple files while user hasn't given any password, I want the dialog for the first password to stay visible until that password is given and then the dialog for the next password can show and so on.
I use some sort of queue to remember which archives need a password, and I am trying to show and hide an unique dialog (actually a Popup) with the info of each archive and get the password from a TextField inside. In the meantime my application is doing other stuff in the c++ code like searching for archives and extracting them when a given password is OK.
My problem is that it is not really working. The dialog shows the first time, I get the first password but then the dialog doesn't show for the next password. Sometimes I can see the dialog a second time, for a few milliseconds, before it disappears without user interaction. My application is blocked because it cannot go on without the unasked passwords.
I get that I am doing something wrong but I don't get what exactly.
Can anyone help ?
I don't know if I was very clear, English is (obviously) not my mother tongue.
I found my mistake.
I did a component based on a Popup.
Inside the onClicked function of the Check or Skip buttons I was doing two things: send accepted() or refused() to trigger custom actions and then close the dialog.
I was doing that in that order, so the accepted or refused action, which among others things triggered the visibility for the "next" password dialog, occurred before the close event, which was setting the dialog visibility to false.
I switched the order and it's way better.
I feel a little silly now but at least I found it.

Django - How can I remove some of the text displayed on the admin 'add user' page?

I currently have a system where the admin is the only way to add a user to the site. All they need to do is put in thier email and they will be sent a link allowing them to create a password and set up thier account. This is all working fine.
The problem I have is shown in the image below, when the admin goes to add the user through the interface I am still greeted with the old text from the page, which I obviously do not want.
"First, enter a username and password. Then, you'll be able to edit more user options."
I obviously just want this original text removed and my description about entering an email to remain.
I have found the text in the "add_form.html", but I dont believe the right solution is to delete it from there, so I am looking for a way to remove that text?
I have found the text in the "add_form.html", but I dont believe the
right solution is to delete it from there
You should not delete it from there, you need to override it:
Copy original add_form.html template
Edit it as you need
Put new edited template in folder your_project_TEMPLATES_DIRS_path_from_settings_py/admin/auth/user
Checked it in my project, works fine.

I would like to wait for input on a browser and click in a box when receiving a specified request

I am a complete beginner in programming, and need to know where to start. I would like to be able to automate form filling on websites, like waiting for input in one part of the screen and then filling in my own data in another, or clicking yes in a specified box.
I have seen the program imacros, but cannot see how to get started
First, Check out the iMacros wiki. This will be your main source of information, and can answer most of your questions moving forward.
http://wiki.imacros.net/Main_Page
The form filling sample code will be helpful as well for this specific task.
http://wiki.imacros.net/Demo-FillForm
If you download iMacros for Firefox, simply use the record function in the plugin and record yourself filling out the form, then modify with pieces from the form filling demo shown above.

SalesLogix Null Values

I am working on SalesLogix 7.5 C#.
I have an aspx page which has a text-box as a control which is a mandatory field. When i enter some data and save, it is saved. Now, when i edit that record and make that text-box as blank it gives me an Error Message saying that this is a mandatory field please enter some value.
Now when I enter the same value as it was before editing, it still shows me the text-box as blank.
Example:
I put "James" in the textbox and save.
On editing: i made it blank (recieved an error message).
Again I entered : "James" (Got the same Error Message)
Sorry, unable to add a comment to the original question but need some more information.
Are you doing this via App Architect or in ASP.NET outside of SalesLogix?
Are you doing this as a QuickForm or a custom SmartPart?
Can you provide the tag for the field that isn't working and the relevant lines from the OnAddEntityBindings function in the .aspx.cs?
Have you stepped-through via the Visual Studio Debugger your btnSave_Click code to check it's saving correctly?