/
6.5 Signup Page [VUC4]

6.5 Signup Page [VUC4]

Sign up component allows to create a custom page with forms for creating new company accounts in VUC4.

6.5.1 VSM3 settings

6.5.1.1 Plan Pack settings

To start with the Signup page the first thing that has to be done is to define the Packages which will be visible on the Signup website.

The Signup website can contain different Packages from which the customer can select the option to signup.

The Packages can be free or paid with subscription with providers like Paypal,Authorize.net etc.

More details about Packages can be found under below link:

1.6.4 Packages

6.5.1.2 Email templates settings

Email template settings are requires to allow proper signup for customers.

The templates are setup in VSM3 under Settings → Email templates

In the VSM3 two templates have to be setup:

VUC4 registration template

Example body:

Dear [USER_NAME], Thank you for registering to our website Click here to confirm your email: https://test.voipswitch.link/vuc/register?token=[CODE] Best Regards, Support

VUC4 welcome template

Example body:

Dear [USER_NAME], Thank you for confirming your email. Please find below your access details to your account: Link https://test.voipswitch.link/vuc/ login: [EMAIL] Password:[PASSWORD] Best Regards, Support

6.5.2 EMCI SMTP settings

The signup system requires to setup an SMTP server to make the signup possible.

The SMTP server is handled by the EMCI API and configured in the AppSettings.config file

<!--SMTP credentials--> <add key="smtp_host" value="smtp.gmail.com" /> <add key="smtp_port" value="465" /> <add key="smtp_from" value="info@gmail.com" /> <add key="smtp_user" value="info@gmail.com" /> <add key="smtp_pass" value="Pass" /> <add key="smtp_ssl" value="true" />

The AppSettings.config file is located in different paths if the system is installed on Windows or Linux

Path for windows:

C:\inetpub\wwwroot\emci\App_Settings.config

Path for Linux:

\var\www\emci\App_Settings.config

After setting up the the SMTP server you need to restart the EMCI Api the procedure is different base on the operation system the API was installed

On Windows:

iisreset

On Linux:

sudo service emci restart

 

6.5.3 Onlineshop settings

Signup requires to have a payment provider that supports subscriptions. Currently we support

More about payment providers can be found here:

1.13 Onlineshop

6.5.4 VUC4 settings

6.5.4.1 Payment Provider setup

Signup component requires a payment provider which has to be set in the AppSettings.config file

Example configuration with Paypal:

The AppSettings.config file is located in different paths if the system is installed on Windows or Linux

Path for windows:

C:\inetpub\wwwroot\VUC4\App_Config\App_Settings.config

Path for Linux:

\var\www\vuc\App_Config\App_Settings.config

After setting up the the SMTP server you need to restart the VUC portal the procedure is different base on the operation system the API was installed

On Windows:

iisreset

On Linux:

sudo service emci restart

6.5.4.2 Signup Components setup

Signup component settings are configured in Registration.config file.

The Registration.config file can be located in different path if the system is installed on Windows or Linux

Path for windows:

C:\inetpub\wwwroot\VUC4\APP_config\Registeration.config

Path for Linux:

\var\www\vuc\App_Config\Registeration.config

Below is an example of completely configured file:

Explanation of the fields from the file:

plan-pack-id="5" - the id of plan pack from the
To get the ID of plan pack you need to get the ID using an SQL command:

select id_plan_pack,name from plans_packs;

is-highlighted="false" - option to highlight the Plan Pack as the best option

is-free="true" - to enable free signup or paid signup

currency="USD" - currency of the plan pack

bundles-hidden="true" - option to hide additional plans connected to the same tariff as plan pack

additional-users-hidden="true" - option to hide the possibility to buy more users[extensions] per the user cost from plan pack

dids-hidden="true" - Option to hide the DID selection from Area and just assign the first one from local DIDs that is free

did is-free="true" - enable the option to have a free DID

country-id="1" - ID of the DID country that is allowed in this plan pack
To get all DID countries and get the id you use SQL command:

select * from portal_countries;

area-id="1" ID of the DID Area

select * from portal_localareacodes;

 

Related content