| 24 | | Update the include_path setting in your php.ini file to include the path to |
| 25 | | the directory containing the Phergie directory extracted from the tarball. |
| 26 | | So, for example, if you decompressed the tarball in /home/matt, then add |
| 27 | | that path to include_path. |
| 28 | | |
| 29 | | Also, make sure that register_argc_argv is enabled. It's often disabled in |
| 30 | | CGI environments since it's generally only needed for CLI purposes. If you |
| 31 | | have not run PHP from the command line before, it may be a good idea to read |
| 32 | | the related manual section at the URL below. |
| | 24 | Make sure that register_argc_argv is enabled if you want to use a |
| | 25 | configuration file that is not in the Phergie directory or is not named |
| | 26 | phergie.ini. register_argc_argv is often disabled in CGI environments since |
| | 27 | it's generally only needed for CLI purposes. If you have not run PHP from the |
| | 28 | command line before, it may be a good idea to read the related manual section |
| | 29 | at the URL below. |
| 36 | | Once you've made the necessary PHP configuration changes, navigate to the |
| 37 | | Phergie directory. From there, open the phergie.ini file and update |
| 38 | | configuration settings there as needed. Once finished, open up a command |
| 39 | | prompt/terminal/shell. Execute the PHP interpreter in CLI mode and pass it |
| 40 | | the filename Bot.php, as shown below. |
| | 33 | Once you've made any necessary PHP configuration changes, navigate to the |
| | 34 | Phergie directory. From there, open your Phergie configuration file and |
| | 35 | update configuration settings there as needed. Once finished, open up a |
| | 36 | command prompt/terminal/shell. Execute the PHP interpreter in CLI mode and |
| | 37 | pass it the filename Bot.php, as shown below. |