From 26 April to 12 May I will not be able to give assistance as I will be on vacation. Thank you and I will get back to you as soon as possible.

Okay
  Print

How to change name of the viewer folder?

Put a file .htaccess inside the root of the application with this content (change new_viewer_name with desired name):

<ifmodule mod_rewrite.c="">
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_URI} ^/([^/]+)
    RewriteRule ^new_viewer_name/(.*)$ /%1/viewer/$1 [L]
</ifmodule>