[Xen-Soluce] Invite System

Add-ons [Xen-Soluce] Invite System 2.3.2

Register & Get access to index

Napolion

Registered
/**Version : 2.2.0 */

Code:
public function upgrade2020000Step1()
    {
        $sm = $this->schemaManager();
        $sm->createTable('xf_xs_is_invitation_email', function (Create $table)
        {
            $table->addColumn('invitation_email_id', 'int')->autoIncrement();
            $table->addColumn('user_id', 'int');
            $table->addColumn('code', 'varchar', 32);
            $table->addColumn('code_id', 'int');
            $table->addColumn('subject', 'varchar', 255);
            $table->addColumn('message', 'text');
            $table->addColumn('email', 'varchar', 255);
            $table->addColumn('is_admin', 'tinyint');
            $table->addPrimaryKey('invitation_email_id');
        });
    }

Here you will understand that it is not even version 2.2.2 Fix 2
 

irontmpfg1

Registered
I'm having trouble setting this up, the 'invites' menu in user settings doesn't even show up

My issue was that I didn't properly configure the permissions I think
 

mYZC

Registered
i install the addon, but in user profile i don't see option to generate code

edit: nevermind we have to generate code.
 
  • Tags
    download [xen-soluce] invite system 2.2.2 fix 1 [xen-soluce] invite system 2.2.1 fix 1 [xen-soluce] invite system 2.2.2 fix 1 [xen-soluce] invite system 2.3.2
  • Back
    Top Bottom