Change Language of your SiteWorx Account?

SiteWorx supports a lot of languages, and if you want to change your SiteWorx language to your native language, you should follow this tutorial.

1. Log into your SiteWorx account. (e.g. www.example.com:2443/siteworx/ )

2. Under “SiteWorx Menu“, click the “Administration” menu item if it is not already open.

3. Click on “User Accounts“.

4. Under “Action” option, Click the “Edit” button.

5. Chose your language from the “Language” dropdown menu and then click on the “Save” button.

Your SiteWorx language setting has been successfully updated.

How to update your SiteWorx Email Address?

If you want to change your SiteWorx email Address then follow these steps.

1. Log into your SiteWorx account. (eg: www.example.com:2443/siteworx/ )

2. Under “SiteWorx User Management“, click the “Administration” menu item if it is not already open.

3. Click on “User Accounts“.

4. Under “Action” option, Click the “Edit” button.

5. In the “E-mail” field, Enter your new email address.

6. Click the “Save” button.

How to Reset my InterWorx (SiteWorx) Account Password?

After you access your SiteWorx account, follow these steps to reset your password:

1. Log into your SiteWorx account. (eg: www.example.com:2443/siteworx/ )

2. Under “SiteWorx Menu“, click the “Administration” menu item if it is not already open.

3
. Click on “User Accounts“.


4.
 Under “Action” option, Click the “Edit” button.

5. In the “Change Password” field, Enter your new password or use a password generator.

6. Click the “Save” button.

You will see a success message, which indicates that your password has changed. Then log out and access your account using your new password.

Note: If you forgot your SiteWorx password and are unable to access your account, please open a ticket with us.

How to restrict directory access by IP address?

In order to secure your admin area from hackers, we recommended you to allow access only from your selected IP to your admin directory. You just need to create an .htaccess file in the directory where you want to restrict access by IP Address.

For example, if you have a WordPress blog installed on your main directory like example.com/wp-admin, you should create an .htaccess file in /wp-admin/.htaccess and you should put this code in, and not forget to replace the allowed IP address with your IP address.

order deny,allow
deny from all
allow from YOUR-IP-ADDRESS-HERE

(Replace “Your-IP-Address-Here” text with your IP Address)

You can test this by accessing your /wp-admin IP address from another IP address which is not allowed by your .htaccess file.

How to protect your .htaccess file?

For security purpose we recommended you to prevent access to your .htaccess file from unauthorized access.

Add this code to your .htaccess file:

# .htaccess protection

order allow,deny
deny from all
satisfy all

How to redirect a page to another page or website using .htaccess?

If a page on your website no longer exist and you want to redirect it to your new page or website then you can use the .htaccess file for redirection without waiting.

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

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

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

Now, whenever you open the url example.com/oldpage.html, it will automatically redirect you to example.com/newpage.html.

How to create a user-friendly URL using .htaccess?

If your website is using long URL like example.com/files/folder/sitemap.html, you can change it into “example.com/sitemap” in .htaccess

Modify this line according to your needs and then add this code to your .htaccess file.

RewriteEngine on
RewriteRule ^sitemap/$   /files/folder/sitemap.html [L]

How to create an E-mail Autoresponder when you are unavailable or on vacation in SiteWorx?

If you are going on a holiday or will be unavailable for a few days or a month, you can create an auto e-mail responder for your e-mails so that when people email you, they will receive an automated e-mail with your message like “I am on a holiday, please e-mail me in a few days’ time”.

1. Log into your SiteWorx account. (e.g. www.example.com:2443/siteworx/ )

2. Under “SiteWorx Menu“, click the “Hosting Features” menu item if it is not already open.

3. Click the “E-mail” menu item and then click on “Autoresponders” option.

4. In the “E-mail Address” field, enter the email address on which you want to enable autoresponder. If you want to enable auto responder on YourEmail@example.com, enter “YourEmail” (without the quotes).

5. In the “Send copy to” field, enter your personal e-mail address where you want to receive copy of your emails (Optional).

6. In the “Autoresponder Message” field, enter message like “I am on vacation”, etc.

7. Click on the “Add” button.

How to remove Autoresponder?
1.
 Open Autoresponder.

2. 
You should see your autoresponder email list under “Existing Autoresponders“.

3. Click on the “Delete” button next to the e-mail address.