Log in

View Full Version : Mini Mods - Create 404 Page


ALBCODERS
06-28-2010, 10:00 PM
I am not a proffessional Coder but I just fixed a 404 page for my Forum.
If you want to create one follow me;

Crate a new template wich will called 404_error on your style:

{vb:stylevar htmldoctype}
<html xmlns="http://www.w3.org/1999/xhtml" dir="{vb:stylevar textdirection}" lang="{vb:stylevar languagecode}" id="vbulletin_html">
<head>
{vb:raw headinclude}
<title>Gabim 404 - Faqja nuk u Gjet</title>
</head>
<body>

{vb:raw header}

{vb:raw navbar}
<div id="pagetitle">
<h2 class="blockhead" align="center">404 ERROR</h2>

<h3 class="blocksubhead">ERROR 404 Page Not Found.! </br> (( PUT YOUR CODE OR IMAGE HERE )) </h3>
</br>
{vb:raw footer}
</body>
</html>
Change the text (( PUT YOUR CODE OR IMAGE HERE )) whith your Code that you want.

So Now you need a 404.php lets create one;

<?php

error_reporting(E_ALL & ~E_NOTICE);

define('THIS_SCRIPT', '404_error');
define('CSRF_PROTECTION', true);
define('CSRF_SKIP_LIST', '');
define('VB_ENTRY', '404.php');

$phrasegroups = array();


$specialtemplates = array();


$globaltemplates = array('404_error',
);


$actiontemplates = array();


require_once('./global.php');

$navbar = render_navbar_template(construct_navbits($navbits) );

$templater = vB_Template::create('404_error');
$templater->register_page_templates();
$templater->register('navbar', $navbar);
print_output($templater->render());

?>

Now open .htaccess file and add this ;
RewriteEngine On
ErrorDocument 404 http://www.albcoders.com/404.php

wolfe
07-01-2010, 05:42 PM
nice also used this to do a 500 error page ;)

apokphp
07-25-2010, 01:58 AM
Can't get this to work (I'm using 4.0.5). This is the error message I get:

Warning: require_once(./global.php) [function.require-once]: failed to open stream: No such file or directory in /home/apokodn/public_html/404.php on line 32

Fatal error: require_once() [function.require]: Failed opening required './global.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/apokodn/public_html/404.php on line 32

This is apparently the code in question:
31 // ######################### REQUIRE BACK-END ############################
32 require_once('./global.php');


I can change my .htaccess and use your link (to your 404.php) and it works fine. But with my own link to my own 404.php file, I get errors.

This is my .htaccess file:


<Files 403.shtml>
order allow,deny
allow from all
</Files>

deny from 128.241.46.107
deny from 199.67.140.154
deny from 199.67.140.83
deny from 209.136.124.178
deny from 24.255.4.133
deny from 65.73.24.110
deny from 68.0.166.100
deny from 68.105.138.218
deny from 68.111.15.15
deny from 68.226.22.66
deny from 68.231.184.133
deny from 68.231.185.12
deny from 68.231.185.219
deny from 68.231.189.51
deny from 69.9.30.7
deny from 72.211.152.125
deny from 72.211.156.96
deny from 72.211.157.157

RewriteEngine On
ErrorDocument 404 http://www.onlinedebate.net/404.php

ErrorDocument 403 /403.shtml

ErrorDocument 500 /500.shtml

RewriteCond %{HTTP_REFERER} !^http://onlinedebate.net/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://onlinedebate.net$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.onlinedebate.net/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.onlinedebate.net$ [NC]
RewriteRule .*\.()$ - [F,NC]

ALBCODERS
07-25-2010, 11:52 AM
Try this :

<?php

error_reporting(E_ALL & ~E_NOTICE);

define('THIS_SCRIPT', '404_error');
define('CSRF_PROTECTION', true);
define('CSRF_SKIP_LIST', '');
define('VB_ENTRY', '404.php');

$phrasegroups = array();


$specialtemplates = array();


$globaltemplates = array('404_error',
);


$actiontemplates = array();


require_once('./global.php');

$navbar = render_navbar_template(construct_navbits($navbits) );

$templater = vB_Template::create('404_error');
$templater->register_page_templates();
$templater->register('navbar', $navbar);
print_output($templater->render());

?>

I dont have 4.0.5 my last version is 4.0.3

apokphp
07-25-2010, 06:39 PM
This is the error I get now:


Warning: require_once(./global.php) [function.require-once]: failed to open stream: No such file or directory in /home/apokodn/public_html/404.php on line 11

Fatal error: require_once() [function.require]: Failed opening required './global.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/apokodn/public_html/404.php on line 11

apokphp
07-25-2010, 06:44 PM
I suspect the issue is w/ the global. I recall reading in another thread that 4.0.5 does something differently in its global calls.

River J
06-28-2011, 06:47 AM
there's easier ways to do this :p

GamerUnguided
02-06-2014, 05:55 PM
i did this but the only problem is it logs the user out :/

SPEEDKILLZ
02-16-2014, 01:44 AM
What Would This Be Used for?

ozzy47
02-16-2014, 09:56 AM
What’s the use?
On a 404 page usually you want to let people know something went wrong and the page they wanted to see is not available.
But after you let him know what just happened, an advantage the 404 page offers is that you are able to suggest other pages he might want to see or give him instructions to get to an active page. Using a customized 404 page, visitors won’t get confused and leave the website not knowing what happened. If you decide not to have a customized 404 page you should know that a non-customized 404 page can look not so friendly.

Customized 404 Pages and Search Engines
Search engines also can benefit from a 404 page. Imagine that a link is broken and it leads to a non-existent page. At this point search engines can’t go any further and won’t index content. If you choose to have a customized 404 page even though a page is broken search engines will see a page that can be indexed and can find links to pages that could benefit from a crawling. This is an SEO benefit!

404 Pages bring credibility
Having a non-customized 404 page looks unfriendly. But imagine a scenario where a visitor ends up on the 404 page and is shown a nice image, some instructions and links to other pages he might be interested in. He will thing that you really care about his experience on your website and probably he will go to a page you suggested and won’t leave your website or hit the back button

RichieBoy67
02-24-2014, 06:08 PM
What?s the use?
On a 404 page usually you want to let people know something went wrong and the page they wanted to see is not available.
But after you let him know what just happened, an advantage the 404 page offers is that you are able to suggest other pages he might want to see or give him instructions to get to an active page. Using a customized 404 page, visitors won?t get confused and leave the website not knowing what happened. If you decide not to have a customized 404 page you should know that a non-customized 404 page can look not so friendly.

Customized 404 Pages and Search Engines
Search engines also can benefit from a 404 page. Imagine that a link is broken and it leads to a non-existent page. At this point search engines can?t go any further and won?t index content. If you choose to have a customized 404 page even though a page is broken search engines will see a page that can be indexed and can find links to pages that could benefit from a crawling. This is an SEO benefit!

404 Pages bring credibility
Having a non-customized 404 page looks unfriendly. But imagine a scenario where a visitor ends up on the 404 page and is shown a nice image, some instructions and links to other pages he might be interested in. He will thing that you really care about his experience on your website and probably he will go to a page you suggested and won?t leave your website or hit the back button

This is what I am using for now and this is very easy, no mod needed. I have had Bf easy pages installed for years for my Privacy statement and TOS so I just used it for a simple html error page and added it into my htaccess. I am using just one error page right now for all the errors but I will make more pages when i have time.

You guys are so right about the importance of this. I had created a bunch of error pages years ago and ended up losing them after theme and script upgrades. i have been doing without them until a couple days ago. It was pretty stupid of me to not have those when I had so many broken urls, etc from Vbseo removal.

http://musclemecca.com/broken

Spangle
04-30-2014, 02:30 PM
Works on 4.2.2 PL1, if you use the second php code

DreadsUK
04-30-2014, 02:58 PM
Works on 4.2.2 PL1, if you use the second php code

Which one? its confusing.

ForceHSS
04-30-2014, 03:40 PM
This is the error I get now:
If you are getting this error it means you have not uploaded the file to the correct place it should go into your root or edited the php file correctly
Warning: require_once(./global.php) [function.require-once]: failed to open stream: No such file or directory in /home/apokodn/public_html/404.php on line 11

Fatal error: require_once() [function.require]: Failed opening required './global.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/apokodn/public_html/404.php on line 11

Spangle
04-30-2014, 03:47 PM
Which one? its confusing.


This one:

<?php

error_reporting(E_ALL & ~E_NOTICE);

define('THIS_SCRIPT', '404_error');
define('CSRF_PROTECTION', true);
define('CSRF_SKIP_LIST', '');
define('VB_ENTRY', '404.php');

$phrasegroups = array();


$specialtemplates = array();


$globaltemplates = array('404_error',
);


$actiontemplates = array();


require_once('./global.php');

$navbar = render_navbar_template(construct_navbits($navbits) );

$templater = vB_Template::create('404_error');
$templater->register_page_templates();
$templater->register('navbar', $navbar);
print_output($templater->render());

?>

gageb
06-05-2014, 08:34 PM
works!!!!! nice

DemOnstar
06-10-2014, 04:47 AM
I tried this but it just kept picking up the default style and not the style I am using.
If anybody knows a solution, then please drop it here.

Thanks...

thetechgenius
08-12-2014, 06:49 AM
If you just want a custom error page without your forum, you could setup the Error Page(s) with .htaccess/web.config.

Example:

.htaccess (unix)


ErrorDocument 404 /404.htm
ErrorDocument 403 /403.htm
ErrorDocument 500 /500.htm





This is how I did mine, on my Dedicated Box running Windows Server 2008R2. But I really customized my error pages, with CSS, HTML, and Images. Treat the error pages as just another HTML file, and do what you want. Link to a CSS file, an Image, etc... Actually, you can search google for some open source error pages, there are a lot of really nice custom and open source Error Pages out there.

web.config (windows)


<system.webServer>
<httpErrors>
<remove statusCode="404" subStatusCode="-1" />
<remove statusCode="403" subStatusCode="-1" />
<remove statusCode="500" subStatusCode="-1" />
<error statusCode="404" path="/404.htm" responseMode="ExecuteURL" />
<error statusCode="403" path="/403.htm" responseMode="ExecuteURL" />
<error statusCode="500" path="/500.htm" responseMode="ExecuteURL" />
</httpErrors>
</system.webServer>



This is just another way of adding your own custom error pages, without using your vBulletin Style. All credit still goes to ALBCODERS (https://vborg.vbsupport.ru/member.php?u=329977).

K4GAP
08-12-2014, 11:00 AM
I confiscated the one I'm using (http://www.k4gap.com/forums/404.index). (I'm such a heel)

Can't remember were I saw it but I borrowed it ;)

friendlymela
10-05-2015, 09:54 AM
this is good one

gnrx
01-19-2016, 03:04 PM
Hi,
I use this code for my 404.

Works fine in vb 4.2.3 but only if I upload the .htaccess and 404.php to my forum folder, if I upload this files to my root folder (public_html) don't work and appears this error:

Warning: require_once(./global.php) [function.require-once]: failed to open stream: No such file or directory in /home/myforum/public_html/404.php on line 32

Fatal error: require_once() [function.require]: Failed opening required './global.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/myforum/public_html/404.php on line 32


I edit the 404.php for this line for this change:
require_once('http://www.myforum.com/forum/global.php');

But continue the error.

Only if I upload this files to my forum folder works fine.

Thank you very much!

gnrx
10-29-2018, 10:04 AM
Hello.
Yes, work fine (and then work like indicate en my last reply :))

I try to add a code for, after x seconds, redirect to main page, but I can't...

I try some differents codes, like this:

<script language="JavaScript">

/* Determinamos el tiempo total en segundos */
var totalTiempo=10;
/* Determinamos la url donde redireccionar */
var url="https://www.myforum.com/";

function updateReloj()
{
document.getElementById('CuentaAtras').innerHTML = "Redireccionando en..."+totalTiempo+" segundos";

if(totalTiempo==0)
{
window.location=url;
}else{
/* Restamos un segundo al tiempo restante */
totalTiempo-=1;
/* Ejecutamos nuevamente la funci?n al pasar 1000 milisegundos (1 segundo) */
setTimeout("updateReloj()",1000);
}
}

window.onload=updateReloj;

</script>
But if insert this code in 404.php not work (have a error of Cloudflare) and if insert in template...obviously also not work...

Regards.