Changes between Version 22 and Version 23 of DetailedInstall
- Timestamp:
- Feb 19, 2008, 4:17:22 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DetailedInstall
v22 v23 12 12 13 13 {{{ 14 14 lynx http://get.boonex.com/Dolphin-v.6.0-Free 15 15 }}} 16 16 (for the Free version) … … 19 19 20 20 {{{ 21 21 lynx http://get.boonex.com/Dolphin-v.6.0-AdFree 22 22 }}} 23 23 (for the Ad-Free version) … … 27 27 Then you will be able to unzip the package under your shell account using the following command: 28 28 {{{ 29 29 unzip Dolphin-v.X.X Dolphin-v.X.X.zip 30 30 }}} 31 31 … … 189 189 * Directory root: this should be the server absolute path to the Dolphin folder, such as: 190 190 {{{ 191 191 /home/myaccount/public_html/mycommunity/ 192 192 }}} 193 193 (on Unix systems) or 194 194 {{{ 195 195 C:/webservers/home/myaccount/www/mycommunity/ 196 196 }}} 197 197 (on Windows systems) This path is usually properly determined by the installation script but you still should double check. … … 199 199 * Path to php binary: here you should indicate the absolute path to php executable file on your server, such as: 200 200 {{{ 201 201 /usr/local/bin/php 202 202 }}} 203 203 (on Unix systems) or 204 204 {{{ 205 205 C:/php/php.exe 206 206 }}} 207 207 (on Windows systems) This executable will be used to run crons (periodic tasks). … … 212 212 The actual paths can be such: 213 213 {{{ 214 215 216 214 /usr/local/bin/mogrify 215 /usr/local/bin/convert 216 /usr/local/bin/composite 217 217 }}} 218 218 * Check ''GD'' installed: this field shows whether GD library is installed or not … … 271 271 3. Return to the Dolphin installation page and copy the first command to be run as cron (omitting the zeros and asterisks), for example: 272 272 {{{ 273 273 /usr/local/bin/php -q m:/home/localhost/www/d5605/periodic/cmd.php 274 274 }}} 275 275 and insert it into the first field of your CPanel cron jobs management page 276 276 schedule the time for this job, which also can be fetched from the Dolphin installation page, such as: 277 277 {{{ 278 278 0 0 * * * (which means: run the script every midnight) 279 279 }}} 280 280 4. Apply the changes and click Back to return to the Cron Management page 281 281 5. Do the same for the second cron script: 282 282 {{{ 283 283 /usr/local/bin/php -q m:/home/localhost/www/d5605/periodic/notifies.php 284 284 }}} 285 285 and schedule the time for it: 286 286 {{{ 287 287 */10 * * * * (which means: run the script every 10 minutes) 288 288 }}} 289 289 2. Using shell (for experienced users): 290 290 run the following command 291 291 {{{ 292 292 crontab -e 293 293 }}} 294 294 This will open your default text editor, where you will have to insert the three lines of code to be executed: 295 295 {{{ 296 MAILTO=myemail@mysite.com 297 0 0 * * * /usr/local/bin/php -q m:/home/localhost/www/d5605/periodic/cmd.php 298 */10 * * * * /usr/local/bin/php -q m:/home/localhost/www/d5605/periodic/notifies.php 299 Save the file and exit the editor. 300 }}} 296 MAILTO=myemail@mysite.com 297 0 0 * * * /usr/local/bin/php -q m:/home/localhost/www/d5605/periodic/cmd.php 298 */10 * * * * /usr/local/bin/php -q m:/home/localhost/www/d5605/periodic/notifies.php 299 }}} 300 301 Save the file and exit the editor. 301 302 302 303 '''Hint: The above lines serve as an example. The actual Cron Job commands are generated by the script at 6th step of the installation process. And you can easily copy&paste them into the "crontab" file.''' … … 310 311 Notice the chmod commands for specified folders and files on the final installation screen and set the following permissions using right click on the corresponding files and folders: 311 312 {{{ 312 313 }}} 314 {{{ 315 313 755 for folders (755 means that the objects possessing these permissions will be readable and executable). 314 }}} 315 {{{ 316 644 for files (644 means that such objects will be only readable). 316 317 }}} 317 318 … … 320 321 Log into your shell account using your favorite shell client and change directory for that which contains your installed Dolphin script. Now run the following commands under your SSH prompt: 321 322 {{{ 322 323 chmod -v 755 ./inc ./periodic 323 324 chmod -v 644 ./periodic/cmd.php ./periodic/notifies.php ./periodic/tags.php ./ray/modules/global/inc/header.inc.php 324 325 }}}