v3.1 bug?

gccarlin011700

New Member
YetiShare User
Aug 11, 2012
50
0
0
When clicking on an invalid link there is only a blank page no redirect.

Any ideas?

test link: http://247uploads.com/IO
 

gccarlin011700

New Member
YetiShare User
Aug 11, 2012
50
0
0
I have just been playing around when I have time.
If you want some help with yours I can help. No fees or charges
IMO as a community of users we should help each other where we can.
 

zipitshare1707

New Member
YetiShare User
Aug 14, 2012
85
0
0
Brilliant cheers mate what software do you use to edit. And could we make everything free on here without all the premium accounts and restriction with a free download page
 

adam

Administrator
Staff member
Dec 5, 2009
2,043
108
63
gccarlin011700 said:
When clicking on an invalid link there is only a blank page no redirect.

Any ideas?

test link: http://247uploads.com/IO
Hi,

That's right, in the latest release any invalid links produce a 404 rather than redirect. This was requested from a number of users for SEO purposes. You can however override it by opening file_download.php and editing line 26-27 from this:

Code:
output404();
//redirect(WEB_ROOT . "/index." . SITE_CONFIG_PAGE_EXTENSION);
to this:

Code:
//output404();
redirect(WEB_ROOT . "/index." . SITE_CONFIG_PAGE_EXTENSION);
Regards,
Adam.