redirect – Email shop Community https://theemailshop.co.uk/community Thu, 05 Dec 2019 06:26:12 +0000 en-US hourly 1 https://wordpress.org/?v=6.8.3 LEARN TO INSTALL TANGOBB FORUM THROUGH SOFTACULOUS IN CPANEL https://theemailshop.co.uk/community/knowledge-base/learn-to-install-tangobb-forum-through-softaculous-in-cpanel/ Thu, 05 Dec 2019 06:26:12 +0000 https://theemailshop.co.uk/forum/?post_type=epkb_post_type_1&p=2032 1.  Sign-in to your SiteWork account.

2.  Right under the “SiteWorx Menu” > “Hosting Features”.

3.  Select the “Softaculous” option

softaculous icon

 

4.  SiteWork will redirect you to the Softaculous interface.

 

5.  Navigate to “Forums” at the left side of your screen, click on it, “TangoBB” link will appear, again, click on it.

TangoBB softaculous

 

6.  Finally, tap on the “Install”

TangoBB install button

 

7.  Now, write all the appropriate information in the relevant fields:

  • Choose Protocol: leave this as it is.
  • Choose Domain: leave this as it is. You will only need to make changes If you have multiple domains.
  • In Directory: If you want to install this in a directory, like testdomain.com/forums, enter the directory name. Else, leave this blank to install in your main domain testdomain.com

 

8.  Write all the appropriate information in the “Site Settings” field:

  • Site Name: Write the forum name “Your Domain Name – My Forum Name”

TangoBB install screen

 

9.  Write all the appropriate information under the “Admin Account” field:

  • Admin Username: Your new TangoBB username (Avoid using “Administrator” or the “Admin”)
  • Admin Password: Type strong password.
  • Admin Email: Write your e-mail address.

TangoBB install screen2

 

Note: Remember your admin username and password or copy that on a notepad as you will be required to add these login details for the access of the admin area of your TangoBB Forum.

 

10.  Choose the language of your choice in the “Language”

  • You can choose your native language. English is by-default.

 

11.  Advanced Options: Again, leave it as it is. In case, you want to edit the Database name or you require an automatic backup, you may need to make changes.

Remember: Creating many backups will have most of the disk space.

 

12.  At the end of your screen, click on the “install”

softaculous install button

 

]]>
HOW TO INSTALL PHPBB FORUM THROUGH SOFTACULOUS IN YOUR SITEWORX? https://theemailshop.co.uk/community/knowledge-base/how-to-install-phpbb-forum-through-softaculous-in-your-siteworx-2/ Wed, 04 Dec 2019 10:31:10 +0000 https://theemailshop.co.uk/forum/?post_type=epkb_post_type_1&p=1721 1.   Sign-in to your SiteWork account.

2.   Right under the “SiteWorx Menu” > “Hosting Features”.

3.   Select “Softaculous”.

softaculous icon

 

4.   SiteWork will redirect you to the Softaculous interface.

5.   Navigate to “Forums” at the left side of your screen, click on it, “phpBB” link will appear, again, click on it.

phpBB softaculous

 

6.   Finally, tap on the “Install”

phpBB install button

 

7.   Now, write all the appropriate information in the relevant fields:

    • Choose Protocol: leave this as it is.
    • Choose Domain: leave this as it is. You will only need to make changes If you have multiple domains.
    • In Directory: If you want to install this in a directory, like testdomain.com/forums, enter the directory name. Else, leave this blank to install in your main domain testdomain.com

8.   Write all the appropriate information in the “Board Settings” field:

    • Board Name: Name of the forum
    • Site Description: Site Description
    • Board E-mail: The forums e-mail address.

phpBB install screen

 

9.   Write all the appropriate information under the “Admin Account” field:

    • Admin Username: Your new phpBB username (Avoid using “Administrator” or the “Admin” username).
    • Admin Password: Type strong password.
    • Admin Email: Write your e-mail address.

phpBB install screen2

 

Note: Remember your admin username and password or copy that on a notepad as you will be required to add these login details for the access of the admin area of your phpBB.

10.   Choose the language of your choice in the “Language”

    • You can choose your native language. English is by-default.

11.   Advanced Options: Again, leave it as it is. In case, you want to edit the Database name or you require an automatic backup, you may need to make changes.

Remember: Creating many backups will have most of the disk space.

12.   At the end of your screen, click on the “install”

softaculous install button

 

]]>
How would redirect one page to another page or even website using .HTAcess? https://theemailshop.co.uk/community/knowledge-base/how-would-redirect-one-page-to-another-page-or-even-website-using-htacess/ Wed, 04 Dec 2019 05:36:42 +0000 https://theemailshop.co.uk/forum/?post_type=epkb_post_type_1&p=1142 If some page on the website is not existing, and you need to redirect it to another page or even the website then a user can use the .htaccess file for redirection without wasting a minute.

Redirect from a page/directory to another domain or the main domain:

Redirect from one page to another domain:
RewriteEngine on
Redirect 301 /mypage.html http://example.com


Redirect from one page to another page

Redirect from a page/directory to another page
Redirect 301 /oldpage.html /newpage.html


so, when you open the url example.com/oldpage.html, it would automatically redirect you to new page such as example.com/newpage.html.

]]>