Sample Website for phpModuleManager
Welcome to this demonstration of phpModuleManager.
Here are some examples of things that can be done or retrieved using phpModuleManager.
Because this module is defined as depending on module SQLConnection, it is automatically loaded. This dependency can be version specific and would result in an error if it fails. The version of the currently installed SQLConnection module is: 0.9
While loading SQLConnection the main files are included, too, because of the definition of this module. Additionally it retrieves the default connection parameters which currently are:Host: localhost
User: root
Database: test
This is used when creating a connection without specifying own parameters and can be different from deployment location to location.
Additionally every module gets specific directories and paths assigned where to find or store its files. So this example website should use the following paths to find or store its files:- E:\WebModules/SampleWebsite/www/ (PublicDir)
- This is the root for public files on the local filesystem.
- / (PublicHttp)
- Using this urlprefix the public files can be accessed from clients
- E:\WebModules/SampleWebsite/www/dyndata/ (DataDir)
- This is the root for data files on the local filesystem. It should be used to store local datafiles and should not be added to a scm.
- /dyndata/ (DataHttp)
- Using this urlprefix the data files can be accessed from clients