ForwardTrack Scripts

Overview

There are several php scripts, meant to be run from the command-line, that can help in testing and maintaing a ForwardTrack installation.

Memory/Processing Limits

Generally speaking, if you have a PHP script to be run from the command line, you would run it as such (assuming you are already in the directory for that script):

php script.php;

However, PHP places memory and CPU-time limits on its processes, which can cause problems if running programs over lots of data. These limits can be overcome by running the PHP command line with the -c flag to specify an initialization file with new settings. For example:

php -c script.php.ini script.php;

Along with each php script we provide, there is a similarly named .ini file.

Scripts