Difference between revisions of "PKP/OJS/Install Software/During"
Jump to navigation
Jump to search
m |
m (→Source Code) |
||
| Line 7: | Line 7: | ||
cd /tmp | cd /tmp | ||
Download OJS software. | Download OJS software. | ||
| − | wget http://web.lib.sun.ac.za/files/ojs/ojs-2.4. | + | wget http://web.lib.sun.ac.za/files/ojs/ojs-2.4.5.tar.gz |
Extract the code as follows: | Extract the code as follows: | ||
| − | tar -xzvf ojs-2.4. | + | tar -xzvf ojs-2.4.5.tar.gz |
Copy the code the the web folder as follow: | Copy the code the the web folder as follow: | ||
| − | rsync -av /tmp/ojs-2.4. | + | rsync -av /tmp/ojs-2.4.5/ /var/www/ |
==File Permissions== | ==File Permissions== | ||
Revision as of 11:45, 30 September 2014
Back to OJS Installation
Contents
Source Code
Go the temp folder.
cd /tmp
Download OJS software.
wget http://web.lib.sun.ac.za/files/ojs/ojs-2.4.5.tar.gz
Extract the code as follows:
tar -xzvf ojs-2.4.5.tar.gz
Copy the code the the web folder as follow:
rsync -av /tmp/ojs-2.4.5/ /var/www/
File Permissions
Apply the following permissions.
chmod 0777 -R /var/www/cache
chmod 0777 -R /var/www/plugins
chmod 0777 -R /var/www/public
chmod 0777 /var/www/config.inc.php
chown www-data.root -R /var/www
Installation
Open a web browser and go to the journal website, complete the web gui installation.
- Remove the default "index.html" file.
- Apply the patches. See: http://www.journals.ac.za/index.php/Bugs
After installation instructions
See: http://pkp.sfu.ca/ojs/docs/userguide/2.3.3/systemAdministrationOther.html
After installation, setup the following:
- CAPTCHA
- Mail service. Enable all options.
nano /var/www/config.inc.php
Scheduled tasks
Create a "root" user crontab to do scheduled tasks.
crontab -e
0 * * * * php /var/www/tools/runScheduledTasks.php
chmod 0755 /var/www/tools/runScheduledTasks.php
Enable in config file.
nano /var/www/config.inc.php
Search
Install the following:
sudo apt-get install catdoc antiword poppler-utils pstotext
Then setup the config file.
nano /var/www/config.inc.php
Uncomment search for PDF, PostScript and M$ Word. See example below.
; PDF ;index[application/pdf] = "/usr/bin/pstotext -enc UTF-8 -nopgbrk %s - | /usr/bin/tr '[:cntrl:]' ' '" index[application/pdf] = "/usr/bin/pdftotext -enc UTF-8 -nopgbrk %s - | /usr/bin/tr '[:cntrl:]' ' '" ; PostScript index[application/postscript] = "/usr/bin/pstotext -enc UTF-8 -nopgbrk %s - | /usr/bin/tr '[:cntrl:]' ' '" index[application/postscript] = "/usr/bin/ps2ascii %s | /usr/bin/tr '[:cntrl:]' ' '" ; Microsoft Word index[application/msword] = "/usr/bin/antiword %s" index[application/msword] = "/usr/bin/catdoc %s"
Then run the following:
chmod 0755 /var/www/tools/rebuildSearchIndex.php
php /var/www/tools/rebuildSearchIndex.php