Agora logo
Welcome to Agora!
 → 

Recent posts of VignacSecond

«  [1]  2 »
VignacSecond
take care of yourself
bro
VignacSecond
When new updates ? :)
like a search bar ahah ? ^^
this forum is a good work, don't give up pls
VignacSecond
there is no search bar?
up zzz
VignacSecond
How to put a captcha to the post-form ?
it's good I have programmed my own captcha, everything is fine
VignacSecond
How to put a captcha to the post-form ?
???
VignacSecond
A button to delete all the posts of a user ?
Quote from: Pecon
Quote from: VignacSecond
That's exist ?

It does not. However, you can accomplish this with an SQL query on the database.

Code
DELETE FROM `posts` WHERE userID=#;

Just replace the # with the ID of the user you are clearing posts for.
If they created any topics you want gone then you'll have to run another query:
Code
DELETE FROM `topics` WHERE creatorUserID=#;


You'll probably want to avoid doing this unless you have to, because there will be minor side effects since the normal deletion process for posts and threads also involves correcting some index information which is difficult to do manually.


Okay thanks :)
VignacSecond
A button to delete all the posts of a user ?
That's exist ?
VignacSecond
Admin Force edit post.
Quote from: Pecon
Quote from: VignacSecond
how does it work ? ^^

It doesn't, not yet anyways. It was the last feature I left off on, I was overhauling the admin tools. As you can probably see, the only thing that was mostly finished there was the logging view.


Ok, can't wait to see the future moderation tools and features then ahah ^^ :)
VignacSecond
messages not working properly
Quote from: VignacSecond
Nice, You do a great job, thanks for your time.
Also, "Passwords must be at least 8 characters and no more than 72 characters long. Only letters, numbers, and most common ASCII special characters are allowed. Your password cannot begin or end with spaces." This rule is not respected when we want to change the password on our profile :/


Basically it's not good for the database if you can put a huge password.
You need to put this rule
Code
"<input type = "password" class = "registerPassword" minLength = "<? Php print ($ min_password_length);?>" MaxLength = "72" name = "password" tabIndex = "2 "autocomplete =" new-password "required pattern =" (^ [A-Za-z0-9! @ # $% ^ & * () \ -_ = + \ [\] {} | \\;: \ x27 \ x22,. / <>? ~] [A-Za-z0-9! @ # $% ^ & * () \ -_ = + \ [\] {} | \\;: \ x27 \ x22 ,. / <>? ~] {0.70} [A-Za-z0-9! @ # $% ^ & * () \ -_ = + \ [\] {} | \\;: \ x27 \ x22, ./<>?~$$) "value =" <? php print ($ fillPassword);?> "/>"
to the function to change the password in 'profile' (https: //agora.evalyn.app/?action=passwordchange).
VignacSecond
Admin Force edit post.
how does it work ? ^^
«  [1]  2 »