MyBB Community Forums

Full Version: Changing "The specified thread does not exist."
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello

I converted my forum Vbulletin to MyBB

Also Installed seo url

people Clicking Already Indexed Links like

http://www.wareztalk.com/forum/showthread.php?p=64

The specified thread does not exist.

I want to change the above Error because thread do exist and i want people to search and find the thread.

so i need a search box too

please tell me which template i need to Edit
Open:
/inc/languages/english/messages.lang.php
Find:
$l['error_invalidthread'] = "The specified thread does not exist.";
Put your own error message inside the double quotes. :]
Thanks a lot , finally found !

Possible to insert a search box rather than search.php link ?
Yup you can put HTML in the language string. Just make sure you put a backslash before any double-quotation marks (") you may have in your HTML.

$l['error_invalidthread'] = "The specified thread does not exist.  
<p>Try a search?</p>
<form action=\"search.php\"> 
.................. the rest of your form here
";