Have you already resolved the problem?
I was suprised by the same problem. I work on localhost, with PHP version 5.1.2. I guess the problem was not in FTP transfer (it is localhost, no FTP transfer).
The problem was: Warning: require(search.php) [function.require]: failed to open stream: No such file or directory in c:\program files\apache group\Apache\htdocs\wb\framework\frontend.functions.php on line 213
So I looked into file frontend.functions.
php where I realised the function require() at 213 line takes an argument PAGE_CONTENT. This argument is defined in file wb\search\index.php on the line 41, this statement:
define('PAGE_CONTENT', 'search.php');
I rewrite the statement:
define('PAGE_CONTENT', WB_PATH.'\search\search.php');
so that argument PAGE_CONTENT contains a full address from the WB root into the search.php file. Now my SEARCH function works.
You know, you might have another problem or my solution might not be best but you may try it.
Good luck,
Ivetask
Well i did upload everything once more but no luck whatsoever....
I even tried the repair_search.php posted in another thread, but nothing changed.
I still get:
Warning: page_content(search.php) [function.page-content]: failed to open stream: No such file or directory in C:\Inetpub\vhosts\karydis.com.gr\httpdocs\framework\frontend.functions.php on line 213
Warning: page_content(search.php) [function.page-content]: failed to open stream: No such file or directory in C:\Inetpub\vhosts\karydis.com.gr\httpdocs\framework\frontend.functions.php on line 213
Fatal error: page_content() [function.require]: Failed opening required 'search.php' (include_path='C:\Inetpub\vhosts\secure.eurovps.com\httpdocs') in C:\Inetpub\vhosts\karydis.com.gr\httpdocs\framework\frontend.functions.php on line 213
I'm even considering removing the 4 form rows in the wbsearch table as it seems they caused trouble with search before (in other posts!!). Shall i try that?
I've included attached what i currently have in wbsearch.
Any suggestions guys??
Thanks again!