F
F
Fiamma2014-06-16 20:21:36
CMS
Fiamma, 2014-06-16 20:21:36

How to make your own error page in IPBoard?

Hello. Does anyone know how to customize the error pages (500 and 404) in the IPBoard forum?
Tried through ErrorDocument in Apache, but this method doesn't work.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
Stanislav Chernov, 2014-06-26
@uinx

If you have a VPS (VDS, Dedicated) server, then kill apache and install nginx,
in the latter in the server settings (conf file) you can simply specify:
server {
listen 80;
server_name hostname.com;
error_page 404 403 /404.html;
# and this is also possible:
#error_page 500 502 503 504 /50x.html;
# location = /50x.html {
# root /var/www/hostname.com/;
# }
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question