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

Posts posted by DreamOn

  1. 6 minutes ago, Nathan Explosion said:

    No, it doesn't - it validates the display name while the user is trying to register:

    image.png.ecacd0a5c899777386302954ddd7269e.png

    ย 

    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. 1 minute ago, Adriano Faria said:

    If you have all folders with files, itโ€™s easier and faster to create a new plugin and use what you already have.ย 

    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...

    1 minute ago, Adriano Faria said:

    Copy and paste the methods.ย 

    Seriously...

    This is not how things should be done.

  4. 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?

  5. 2 hours ago, Miss_B said:

    Assuming you have the plugin 's xml file, go to the Plugins section in your Admin Panel and once there click the manual upload link.

    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.

  6. In french, we need to use two words for negative sentence:

    image.thumb.png.837ffc9679d2b32c86b2d57e9ad69ba7.png

    Unfortunalety, I cannot define "ne", only "pas" because of only these language strings are defined:

    image.thumb.png.a45d131803abd31a5aa2db85804c221a.png

    Can you set language string for previous word for others languages?

  7. @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

    image.thumb.png.a1974739b596ffb7c00bb80ec736cded.png

    image.thumb.png.5014ad604df8f84526864300a539a2ef.png

    image.thumb.png.9f0670be859131f6d5870fe30dbbc6fa.png

    image.thumb.png.49644ee3384410bd1184a47249d9cb35.png

  8. On 3/24/2021 at 4:49 PM, Jordan Invision said:

    Hey @DreamOn, you can already search by solved/unsolved in a forum that's designated to. ๐Ÿ™‚ย 

    Screen Shot 2021-03-24 at 8.43.41 AM.png


    Check out this forum for an example and click "filter by."

    Search is a different animal. I can circle back. ๐Ÿ™ย 

    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!

ร—
ร—
  • Create New...