Survey
* Your assessment is very important for improving the work of artificial intelligence, which forms the content of this project
* Your assessment is very important for improving the work of artificial intelligence, which forms the content of this project
SYSTEM REQUIREMENTS
SUPPORTED BROWSERS ............................................................................ 2
COOKIES ENABLED ................................................................................... 2
Instructions To Enable Cookies ................................................................................... 2
ACTIVE SCRIPTING ENABLED ..................................................................... 3
Instructions To Enable Active Scripting ..................................................................... 3
JAVA (SUN) ENABLED ................................................................................ 4
Instructions to Enable Java Runtime Environment (JRE) ....................................... 4
UPDATE THE JAVA POLICY FILE................................................................... 7
Instructions to Update the Java Policy File ............................................................... 7
Page 1 of 7
Last Updated May 01, 2017
SUPPORTED BROWSERS
In response to customer need, especially for those folks working on Macs, we
have taken a step toward web interoperability by designing Pronto to be
compatible with; Internet Explorer 8, Firefox and Safari.
COOKIES ENABLED
Instructions To Enable Cookies
(Similar instructions can be found on the web)
Microsoft Internet Explorer 6.0+
1. Select "Internet Options" from the Tools menu.
2. Click on the "Privacy" tab.
3. Click the "Default" button (or manually slide the bar down to "Medium") under
"Settings".
4. Click "OK".
Microsoft Internet Explorer 5.x
1. Select "Internet Options" from the Tools menu.
2. Click on the "Security" tab.
3. Click the "Custom Level" button.
4. Scroll down to the "Cookies" section.
5. To enable:
6. Set "Allow cookies that are stored on your computer" to "Enable".
7. Set "Allow per-session cookies" to "Enable".
8. Click "OK".
Mozilla Firefox (1.0 final release and earlier)
1. Go to the "Tools" menu.
2. Select "Options".
3. Select the "Privacy" icon in the left panel.
4. Check the box corresponding to "Allow sites to set cookies".
5. Click "OK" to save changes.
Safari
1. Select Preferences from the Safari menu.
2. Click on the Security icon near the top of the window.
3. Under Accept Cookies select either “Always” or “Only from sites you navigate to”.
4. Save changes by clicking Ok.
Page 2 of 7
Last Updated May 01, 2017
ACTIVE SCRIPTING ENABLED
Instructions To Enable Active Scripting
(Similar instructions can be found on the web)
Internet Explorer (6.0)
1. Select “Tools” from the top menu.
2. Choose “Internet Options”.
3. Click on the “Security” tab.
4. Click on “Custom Level”.
5. Scroll down until you see section labeled “Scripting”.
6. Under “Active Scripting”, select “Enable” and click OK.
Mozilla Firefox (1.0)
1. Select “Tools” from the top menu
2. Choose “Options”
3. Choose “Web Features” from the left navigation
4. Select the checkbox next to “Enable JavaScript” and click OK
Mozilla Firefox (1.5)
1. Select “Tools” from the top menu
2. Choose “Options”
3. Choose “Content” from the top navigation
4. Select the checkbox next to “Enable JavaScript” and click OK
Safari Public Beta 2 for MACOSX
1. Select Preferences from the Safari menu.
2. Click on the Security icon near the top of the window.
3. Check both “Enable Java” and “Enable JavaScript”.
4. Close the window.
5. Click Reload.
Page 3 of 7
Last Updated May 01, 2017
JAVA (SUN) ENABLED
Instructions to Enable Java Runtime Environment (JRE)
Pronto III requires that you are running a minimum of Java Runtime
Environment (JRE) 1.4.2.
Java Runtime Environment (JRE) is available for
download from Oracle’s website
http://java.com/en/download/index.jsp. At the
time this document was updated, the most
current version was Java Runtime Environment
(JRE) Version 6 Update 21.
Oracle’s website provides detailed information
on downloading, installing, and testing Java
Runtime Environment (JRE):
WINDOWS
Downloading - http://java.com/en/download/index.jsp
Installing - http://java.com/en/download/help/windows_manual_download.xml
Testing - http://java.com/en/download/installed.jsp?detect=jre&try=1
SOLARIS AND LINUX
Downloading with instructions - http://java.com/en/download/manual.jsp
Testing - http://java.com/en/download/installed.jsp?detect=jre&try=1
APPLE (OS X)
According to Oracle
“Apple Computer supplies their own version of Java. Use the Software Update feature
(available on the Apple menu) to check that you have the most up-to-date version of
Java for your Mac.”
EXAMPLE
Here are the steps that I went through to install JRE 1.6.0_18-b07 for Internet
Explorer 6.0 running on Windows 2000 Professional.
Page 4 of 7
Last Updated May 01, 2017
1. Download and Install JRE
2. Open your control panel
and make sure that you
have this Java icon.
Having this icon confirms
that Java has been
installed.
3. Open Internet Explorer
and select Internet Options
from the Tools menu
4. From the Advanced Tab,
scroll down until your find
the section titled Java
(Sun), checkmark the
option to Use JRE for
<applet>
Click Apply.
Page 5 of 7
Last Updated May 01, 2017
5.
Next, select the Security
Tab, and select the
"Custom Level" button
6.
Scroll down to "Scripting
of Java applets"
7.
Make sure the "Enable"
radio button is checked.
8.
Click OK to save your
preference.
9.
Click OK to close the
Internet Options window
10. Close your Browser
Page 6 of 7
Last Updated May 01, 2017
UPDATE THE JAVA POLICY FILE
Instructions to Update the Java Policy File
This step is rarely needed. I suggest testing Pronto by attempting to open the Nomination
screen. If the screen loads, then you don’t need to update the Java Policy File.
Locate the “java.policy” file --- C:\Program Files\Java\jre6\lib\security
Open the file with WordPad, add this line to the permissions, and Save the File:
// Standard extensions get all permissions by default
grant codeBase "file:${{java.ext.dirs}}/*" {
permission java.security.AllPermission;};
// default permissions granted to all domains
grant {
// Allows any thread to stop itself using the java.lang.Thread.stop()
// method that takes no argument.
// Note that this permission is granted by default only to remain
// backwards compatible.
// It is strongly recommended that you either remove this permission
// from this policy file or further restrict it to code sources
// that you specify, because Thread.stop() is potentially unsafe.
// See "http://java.sun.com/notes" for more information.
permission java.lang.RuntimePermission "stopThread";
// allows anyone to listen on un-privileged ports
permission java.net.SocketPermission "localhost:1024-", "listen";
permission java.net.SocketPermission "proxy:8080", "connect,resolve";
// "standard" properies that can be read by anyone
permission java.util.PropertyPermission "java.version", "read";
permission java.util.PropertyPermission "java.vendor", "read";
Page 7 of 7
Last Updated May 01, 2017