Jump to content

DreamOn

Clients
  • Posts

    106
  • Joined

  • Last visited

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by DreamOn

  1. OK thanks, I thought it checked after member registered! --- But I need to create a plugin because I want to use a list of forbidden words from txt file 🙂 It would be too long for me to add all forbidden words.
  2. The setting just ban member after registration: public function profileSync() { [...] foreach ( \IPS\Db::i()->select( 'ban_content', 'core_banfilters', array( "ban_type=?", 'email' ) ) as $bannedEmail ) { if ( preg_match( '/^' . str_replace( '\*', '.*', preg_quote( $bannedEmail, '/' ) ) . '$/i', $this->value ) ) { throw new \DomainException( 'form_email_banned' ); } }
  3. Thanks, that's not what I'm looking for so 😕 Do you know which class or function should I modify (with a plugin) to verify the display name when registering?
  4. Thanks @Nathan Explosion. But this does not prevent user to register but bans it only?
  5. Hello everybody, It would be great if we could block the registration of a user if the Display Name he chose contains certain words that we consider prohibited. Thanks!
  6. +1, maybe in next version of IPS?
  7. 3 months I'm waiting for support with @Makoto... I purchased the plugin and could not use it... Maybe the plugin could be open source so we can debug and fix the bugs...
  8. Yes... Looks like IPS team doesn't want us to develop plugins...
  9. Thanks for the idea, but what a disaster for a developer... We should just have to do a git clone from our IPS plugin repository and let's go, why it is so complicated with IPS... Seriously... This is not how things should be done.
  10. How do you deal IPS plugins with git? Even if I had the XML file, I should import plugin in ACP with XML file, copy/paste files from source to override files imported from XML and change all class names like this: class hook50 extends _HOOK_CLASS_ { Because when we import a plugin from XML file, hook numbers change and we need to change class name. How is it possible that it is done like this?
  11. I no longer have the XML file unfortunately but I have all folders and files in my Git repository. Is it possible? It's amazing that IPS can't read PHP files from folder. Any PHP app can do this. Developing with IPS is really a horror.
  12. Hello everybody, I have created a plugin that I sent to a Git repository. I have installed a fresh new IPS install. How can I import my plugin from source? I put the plugin folder in plugins/ directory but it's not automatically detected. Thanks!
  13. In french, we need to use two words for negative sentence: Unfortunalety, I cannot define "ne", only "pas" because of only these language strings are defined: Can you set language string for previous word for others languages?
  14. I can't translate these strings:
  15. @Makoto I just purchased your Account Deactivation application, but it doen't work as expected: The mail "Your account has been reactivated" is empty The mail "Your account deactivation request has been completed" is empty When a member click on "Deactivate my account" button in email, he is redirected to the homepage without any message like deletion, the notification disappears very quickly. Then, he receives a empty confirmation email. When a member click on "Delete my account" button in email, he is redirected to the homepage with a notification message which leaves much too quickly. The member does not have time to see it. Then, he doesn't receive an email which confirm account deletion. Can you fix it? Thanks! Invision Community v4.5.4.2 No errors in System Logs/Error lgos Use french translation
  16. Thanks, I don't see this Filter by option because we use fluid view! It's OK, but it would be great if fluid view can have this option too, I don't know if they plan it!
  17. Hello, Is it planned to filter topics by solved/unsolved in search and in forums in the near future? It's to know if I'm developing my own plugin or if I'm patiently waiting 🙂 Thanks 🙂
  18. Up... Same problem here. Weird that no member of the IPS team intervenes here.
  19. Hello, I change to change friendly urls for Download app from https://domain.com/files to https://domain.com/download. I can change https://domain.com/files to https://domain.com/download but not the others URLs. When I want to set https://domain.com/download/file/id-?? or https://domain.com/download/categories, IPS keep files in URL : Can you help? Thanks!
×
×
  • Create New...