How to Edit file in the SiteWorx File Manager?

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

2. Under “SiteWorx Menu“, click on the “File Manager” option.

3. Navigate to the directory where your file is located.

4. Click on the file you want to edit and it will open in edit mode.

5. Make changes to your file and then click on the “Save” button.

How to upload files via the SiteWorx FileManager?

If you don’t want to use a 3rd party FTP Software, you can use the SiteWorx’s inbuilt File Manager.

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

2. Under “SiteWorx Menu“, choose the “File Manager” option.

3. Navigate to the directory where you want to upload your files to. For example, should you wish to upload your file to the public html folder, you need to go to /html first. On the left side you can see a list of directories. Double Click on the “html” folder.


4. 
Click on the “Upload” menu in the Top header section, click on the “Browse” button and select the file you want to upload from your PC. After you have selected the file, click on the “Upload” button to upload it.

How to Access Webalizer in SiteWorx?

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

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

3. Click on the “Webalizer” option and your Webalizer Statistics will open in a new window.

How to Access AWStats in SiteWorx?

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

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

3. Click on the “AWStats” option.

4. If the current month is June, the year is 2015 and you want to see the current month’s statistics, then click on the “June 2015” button under “Stats Type: Monthly“.

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