EWE

EWE (Extensible Web Environment) is an open-source suite of PHP files that provide a the framework for web sites. It doesn't provide a web site itself, but provides the services necessary to manage one, providing features such as session management, user management, error logging, database management, language translation, bot and blacklist management, geolocation, and a plug-and-play extensible architecture which allows both customization and feature management. To manage these features, EWE provides a user interface called the Admin Panel to allow everything to be controlled from a web browser. However, it does not manage your private server or VPS (such as setting up email, ftp, apache, etc).

To make EWE as widely useful as possible, EWE avoids HTML 5-specific features. You don't need any PHP extensions to run EWE, although some optional modules have additional requirements. The Admin Panel uses javascript but gracefully falls back to PHP if javascript is disabled. Thus, in secure environments, EWE will still work. However, enabling javascript is encouraged as it is more efficient and provides a better user experience. Javascript is used to validate data before leaving a page, but PHP code also validates data for cases when Javascript is disabled or malicious users try to bypass validation.

EWE documentation is organized in four sections: Installation (this file), the Administrator's Guide which describes basic EWE concepts and the Admin Panel user interface, Programmer's Guide which describes how to integrate EWE into your web site(s), and the Technical Information which describes technical details about EWE.

1. Installing EWE

There are two situations in which EWE can be installed: on a new server and an existing web server. The steps are different between them. Both procedures are described in the following sections.

Before Installing EWE

Prerequisites for running EWE are: All of these prerequisites should be installed and verified as working before continuing.

You have a choice of two zip files to download, depending on your needs.

You can install the geolocation information separately after install by following these instructions:
  1. Download and extract ewe12.zip, and install EWE as described in the sections below.
  2. If you are going to use the free geolocation data provided by EWE, download ewegeo12.zip, moving the provided geolocation folder to your EWE service in the existing EWE folder structure.
    Otherwise, download the full geolocation data from MaxMind (*.csv files only), and place them in the geolocation folder in your existing EWE folder structure.
    Note: if you are using other geolocation data, follow the instructions associated with that data set.
  3. Go to the admin panel, Geolocation option, and choose Reload database.

1.1. Installing on a new server

  1. Unzip ewe12.zip or ewegeo12.zip to your HTML document root folder.
  2. Create a database for EWE in MySQL (e.g. "CREATE DATABASE ewe;"). The default name is "ewe", although this can be altered during the setup.
  3. You can allow EWE to create the access information file for you or you can manually create it. This file is named "/base/_ewedb.php" on the server. If you manually create it, you should copy the first five lines (and only those lines) from _ewe.php into the new _ewedb.php file and put the appropriate information within the quoted string.
  4. Use your web browser to navigate to /base/admin.php on your server. EWE will query you for your database access information and update/create the _ewedb.php file. Note that if directory/file permissions are too restrictive, EWE may not be able to update this file. In such a case, EWE will inform you and you can manually set up the file. Once you do, simply navigate to /base/admin.php to continue EWE setup.
  5. EWE will next guide you through creation of an admin user that can access the EWE server settings.
  6. EWE will next allow you to configure EWE server options and security defaults for sites you create later.
Note: There may be long delays during the installation process. This is due to the database being setup. Simply wait for the installation to finish. After install, you will need to:
  1. Using the admin panel, add your site and set up any other options according to your needs.
  2. Integrate whatever EWE code you want into your existing landing page.
  3. Run the security check (Server | Check Security) to check for potential configuration problems.

1.2. Installing on an existing web server

There are two options for installing on an existing server: 1) all sites share the same document root folder, or 2) each site has its own document root folder. In the first case, follow the instructions in section 1.2.1. In the second case, follow the instructions in section 1.2.2.

1.2.1 Installing on an existing web server - single site or multiple sites sharing the same document root

  1. Do not unzip ewe12.zip or ewegeo12.zip to your HTML document root folder as this may overwrite existing files. Instead, unzip the file somewhere else and then copy the files and folders other than index.php to your HTML root folder. If one or more of these files or folders already exist, see section 1.3, below, for how to install EWE to a nonstandard location.
  2. Create a database for EWE in MySQL (e.g. "CREATE DATABASE ewe;"). The default name is "ewe", although this can be altered during the setup.
  3. You can allow EWE to create the access information file for you or you can manually create it. This file is named "/base/_ewedb.php" on the server. If you manually create it, you should copy the first five lines (and only those lines) from _ewe.php into the new _ewedb.php file and put the appropriate information within the quoted strings.
  4. Use your web browser to navigate to /base/admin.php on your server. At one or more points during installation, your browser may be redirected to your existing landing page or to a 404 error. This is to be expected. When/if this happens, simply navigate to /base/admin.php again. When EWE set up is complete, you will be shown the EWE admin panel.
  5. EWE will query you for your database access information and update the _ewedb.php file. Note that if directory/file permissions are too restrictive, EWE may not be able to update this file. In such a case, EWE will inform you and you can manually set up the file. Once you do, simply navigate to /base/admin.php to continue EWE setup.
  6. EWE will next guide you through creation of an admin user that can access the EWE server settings.
  7. EWE will next allow you to configure EWE server options and security defaults for sites you create later.
  8. Integrate whatever EWE code you want into your existing landing page.
Note: There may be long delays during the installation process. This is due to the database being setup. Simply wait for the installation to finish. After install, you will need to:
  1. Using the admin panel, add your site and set up any other options according to your needs.
  2. Integrate whatever EWE code you want into your existing landing page.
  3. Have the server redirect errors to the appropriate page in the EWE root (eg 404.php).
  4. Run the security check (Server | Check Security) to check for potential configuration problems.

1.2.2 Installing on an existing web server - multiple sites with separate document roots

Choose one site to serve as your initial set-up. It doesn't matter which one. Follow all of the instructions in section 1.2.1 using that specific site. Then follow these instructions for each of the other sites you want EWE to support. Note that all of the sites will use the same EWE framework database, but each site will need its own copy of the EWE files.
  1. Copy the EWE files and folders other than index.php from the initial site to the next site's HTML document root folder (you can skip the geolocation folder since geolocation was set up for the initial site). If one or more of these files or folders already exist, see section 1.3, below, for how to install EWE to a nonstandard location.
  2. Copy the _ewedb.php from the initial site to the base folder of the new site.
  3. Using the admin panel, add your site and set up any other options according to your needs.
  4. Have the server redirect errors for this site to the appropriate page in the EWE root for this site (eg 404.php).
  5. Integrate whatever EWE code you want into your existing landing page.

1.3. Installing EWE to a non-standard location

By default, EWE is installed to your server's root HTML folder. However, if there are conflicts with existing files, you may need to install it elsewhere. Furthermore, to reduce security risks, you may want to install it to another location under your root HTML folder structure even if you don't have conflicts with existing files. Doing this requires the following steps.
  1. Copy _eweroot.php and getroot.php to the root HTML folder. _eweroot.php must be placed in the HTML root folder, regardless of where you want EWE installed.
  2. Copy _eweroot.php to _ewecustom.php and edit _ewecustom.php by changing the line that looks like this:
    $eweroot='/';
    Replace the slash with the path to the EWE folder. This path should always start with a slash and will always be relative to the server's HTML document folder. For instance:
    $eweroot='/custom/ewe';
  3. unzip or copy the EWE files to the location you indicated in the previous step.
  4. Create a database for EWE in MySQL (e.g. "CREATE DATABASE ewe;"). The default name is "ewe", although this can be altered during the setup.
  5. You can allow EWE to create the access information file for you or you can manually create it. This file is named "/base/_ewedb.php" on the server. If you manually create it, you should copy the first five lines (and only those lines) from _ewe.php into the new _ewedb.php file and put the appropriate information within the quoted strings.
  6. Use your web browser to navigate to /base/admin.php on your server. At one or more points during installation, your browser may be redirected to your existing landing page or to a 404 error. This is to be expected. When/if this happens, simply navigate to /base/admin.php again. When EWE set up is complete, you will be shown the EWE admin panel.
  7. EWE will query you for your database access information and update the _ewedb.php file. Note that if directory/file permissions are too restrictive, EWE may not be able to update this file. In such a case, EWE will inform you and you can manually set up the file. Once you do, simply navigate to /base/admin.php to continue EWE setup.
  8. EWE will next guide you through creation of an admin user that can access the EWE server settings.
  9. EWE will next allow you to configure EWE server options and security defaults for sites you create later.
Note: There may be long delays during the installation process. This is due to the database being setup. Simply wait for the installation to finish. After install, you will need to:
  1. If you are installing onto an existing web server, you will need to integrate whatever EWE code you want into your existing landing page.
  2. Using the admin panel, add your site and set up any other options according to your needs.
  3. Run the security check (Server | Check Security) to check for potential configuration problems.

1.4. Troubleshooting

Error: Unable to connect to MySQL.
This indicates that the database access information is incorrect or incomplete. Verify that the base/_ewedb.php file contains the proper values.

It appears that you have not properly completed the install of EWE. See the document for details.
This indicates that one or more of the values in base/_ewedb.php is null. Verify that the base/_ewedb.php file contains the proper values.

Either the database is unreachable or the _ewedb.php file is incorrect. Please correct.
This message is accompanied by an error number and error text. This indicates that there was a problem connecting to the database, which could indicate that the values in _ewedb.php are incorrect, or that the database is not responding, or that there is some other problem with the connection between your server and the database. Correct the problem and try again.

Server error 404
As noted above, this can happen when you are installing EWE onto an existing server. Use your web browser to navigate to /base/admin.php on your server each time this happens until the Admin panel comes up. This should only need to be done a couple times.

Timeout
In some cases, such as shared hosting, a timeout may occur during installation. You only need to refresh your page in your browser for the install to continue from where it left off. Note that this situation is one in which you may wish to avoid loading extra data into your database, especially geolocation data, which can result in long delays that cause the timeout. If you've used a download, you should delete all *.txt files (except text.txt) from the classes and base folders and all of the files from the geolocation folder. Then refresh the page to continue the install. Failure to delete these files may result in timeout after timeout as only small parts of the data are loaded before the timeout occurs.

Server errors other than 404
If other errors come up (such as error 500), you can change the /base/_ewedb.php file to show error text. Change the line that looks like this:
$ewe_error_reporting=FALSE;
Change the line to:
$ewe_error_reporting=TRUE;
Once the problem is resolved, you should return the line to it's original value. Leaving this modified may possibly reveal information to the public that would allow attackers to compromise your system. Further, it may prevent some pages from operating properly after EWE installation is complete. If this doesn't provide you with useful information or you have server errors without it, you will have to examine the server error logs to determine the cause of the error. This is typically found in the "/var/log/apache2/error.log" file. However, you may need to check with your server administrator for access to this file.

Continue to the Administrator's Guide