Masalah Seputar Instalasi OJS
Url web PKPU, tempat download OJS per versi:
Download OJS
Theme tidak muncul di Web setting
Memusingkan, tapi coba cara sederhana berikut:
Silahkan logout terlebih dahulu, refresh. kemudian login kembali.
400 Bad Requset
Ada banyak hal penyebabnya, salah satunya adalah:
in file “config.inc.php” line 97 :
allowed_hosts = "[\"localhost\"]"
rubah menjadi:
allowed_hosts = "["namadomain.com", "https://www.namadomain.com", "www.namadomain.com"]"
Tampilan depan OJS 3XX tidak rapi
Salah satunya karena OJS3 menggunakan function readfile. Untuk mengatasi kendala tersebut cukup mendisable function readfile pada
file ./lib/pkp/controllers/page/PageHandler.inc.php. Silahkan ubah script berikut :
readfile($cachedFile);
Menjadi
echo file_get_contents($cachedFile);
Error The current role does not have access to this operation
BUka file config.inc.php, pada baris ke 265 ubah :
session_check_ip = On
menjadi
session_check_ip = Off