How to clear the username and password in login form when they are wrong [closed] - authentication

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
I have a question
When an user type a wrong username and/or password and joomla display a message about this error and I would like to clean both fields, how can I do that ?
thank you for you help

Go to your Joomla root folder, from there:
go to: /templates/[your template]/html/mod_login
Backup default.php: cp default.php default.php.org
Edit default.php: vi default.php
And here's the tricky part, the thing you have to changes is different for each template, for example, in atomic template you should look for the line:
So the id of this field in this case is: "modlgn_username". Now you can use jQuery / Javascript and "clean" the value.

Related

Home Directory Can't Fetch Permission [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I can't seem to fetch my users given permission to my home directory (which in this case, would be me...but the loading spinner just keeps on spinning. Any request for permission to create or write hidden files (like .zshrc) is denied...
enter image description here
Does anyone know how to solve this situation? Any help would be appreciated.
Just talked to applecare. If anyone needs to reset their permission settings, copy this into the terminal and should work!
diskutil resetUserPermissions / id -u

How to input text into htaccess authentication pop up(URL access authentication pop up) user name and password field using ROBOT FRAMEWORK [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
Tried :
Input text into alert: did not work since it is not alert
Press keys None ESF : did not work too, showed sending keys to current browser but the pop up didn't close with escape button.
URL technique : https://id:pwd#url.com : doesn't work somehow,so need an alternative to dismiss it somehow
example photo

How can I make a file that can only be read by my application? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
I want to know if there's a way to create a file that only my application can read but other programs (eg: notepad) can't
For example:
i create a config file from my application, and if i open it with notepad it will be garbled nonsense, like:
½ÁoLG0%­Ö9)9Ìm•~0ý<öKfƒ”ü9´~<ƒ\,Aëxzºv‡#u}ž¹ñ7µK³¨]fÛn {盞Ժî*Ò\úǃ«E%ñ
x#Â˼†ZÜŸ¹>ÇðÏ•Þ¢dóü0¹ñS`|ÛV‰‡Fëm¬2°,üdVNÆ$å^Rf­¾!v¼ñ
¡ýù´ÿËjC&¤œšÍÉ]ËÈFæTñq%#++ÜÝ[êq"#hbÍj‰Œ‚äd¡†¸<×sæå‘óùOë\2rxy
You're looking for encryption, if you want something readable only to your application but not the end user.
I don't know VB.NET but a quick google search shows me this question which has a pretty well written answer, that seems to explain how to encrypt a file in VB.NET

Is there a way to save a process and retrieve it after a reboot? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I know that the best way of accomplishing similar tasks is to save intermediate results into a file and restore the state from that file. But out of curiosity, I just wonder whether there is a way to save a process and retrieve it after a reboot. That's all.
Problem solved. I create a dump file of my process and get the address of my variables. Then I extract all the data I need from the file.

.htaccess how to make more than one variable to a simple url [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Hello i want to make a friendly url from the url which is really complex.
My current url is:
mydomain.net/?t=status&b=iid&ref=7007&ty=comment
When a user go on the url I wanna to make it as:
http://mydomain.net/status/comment
is it possible?
Is not. I would need as: mydomain.net/t/b/ref/comment
Visit Apache document
Here you will find how to rewrite .htaccess mod rewrite.