ready2drum Posted August 3, 2009 Share Posted August 3, 2009 I received the following error message after clicking the 'Search' button on a live web page... ------------------ Fatal error: Uncaught exception 'com_exception' with message '<b>Source:</b> CreateRecordset<br/><b>Description:</b> There is no catalog. ' in E:\Inetpub\wwwroot\Intranet_Old\intranet\jha\jha_doc_results.php:66 Stack trace: #0 E:\Inetpub\wwwroot\Intranet_Old\intranet\jha\jha_doc_results.php(66): com->CreateRecordSet('nonsequential') #1 {main} thrown in E:\Inetpub\wwwroot\Intranet_Old\intranet\jha\jha_doc_results.php on line 66 ------------------ Line 66 reads as follows... $fileRS = $Q->CreateRecordSet("nonsequential"); ------------------ I think this error is because the original location of the file was recently moved to a new location on the web server...not 100%. Anyone have any idea as to how to cure this error so that it doesn't happen again? Your help is much appreciated..Thanks in advance! Quote Link to comment https://forums.phpfreaks.com/topic/168681-error-message-when-performing-a-search/ Share on other sites More sharing options...
Andy-H Posted August 3, 2009 Share Posted August 3, 2009 Seems you need to use exceptions / try + catch with whatever class you are using? Quote Link to comment https://forums.phpfreaks.com/topic/168681-error-message-when-performing-a-search/#findComment-889853 Share on other sites More sharing options...
ready2drum Posted August 3, 2009 Author Share Posted August 3, 2009 thanks, but where would the 'try and catch' go? see my code below... --------------- <?php $Q = new COM("ixsso.Query"); $util = new COM("ixsso.util"); $Q->Catalog = "E:\GROUP\BIWeb\jha"; $Q->Query = $_POST['query']; $Q->Columns = "filename, rank, vpath, path, DocTitle, characterization, All"; $Q->SortBy = "rank[d]"; $Q->MaxRecords = 200; $fileRS = $Q->CreateRecordSet("nonsequential"); if(!$fileRS->RecordCount == 0) { $fileRS->MoveFirst(); } while($i < $fileRS->RecordCount) { ?> ----------- I've not had to use the 'try and catch' before, so using the correct syntax/location is foreign to me. Quote Link to comment https://forums.phpfreaks.com/topic/168681-error-message-when-performing-a-search/#findComment-889867 Share on other sites More sharing options...
Andy-H Posted August 3, 2009 Share Posted August 3, 2009 <?php try { $Q = new COM("ixsso.Query"); $util = new COM("ixsso.util"); $Q->Catalog = "E:\GROUP\BIWeb\jha"; $Q->Query = $_POST['query']; $Q->Columns = "filename, rank, vpath, path, DocTitle, characterization, All"; $Q->SortBy = "rank[d]"; $Q->MaxRecords = 200; $fileRS = $Q->CreateRecordSet("nonsequential"); if(!$fileRS->RecordCount == 0) { $fileRS->MoveFirst(); } while($i < $fileRS->RecordCount) { //etc...} //etc... } catch (Exception $e) { echo '<pre>'."\n"; echo "\t".'Error with COM---'."\n\n"; echo "\t\t".'ERROR: - ' . $e->getMesage() . "\n"; echo '</pre>'; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/168681-error-message-when-performing-a-search/#findComment-889876 Share on other sites More sharing options...
ready2drum Posted August 3, 2009 Author Share Posted August 3, 2009 thanks for the information....I added the try/catch items and when I tried the search button again, it generated a different error message... ---------- Parse error: parse error, unexpected T_CATCH in E:\Inetpub\wwwroot\Intranet_Old\intranet\jha\jha_doc_results.php on line 75 ---------- line 75 reads... ---- catch (Exception $e) ---- does it have something to do with what's on line 79? -- cho "\t\t".'ERROR: - ' .$e->getMesage(). "\n"; -- I thought maybe it had something to do with the '$e' pointing to the object of the 'getMesage()' function...I added an 's' to "Mesage" so it reads 'Message', but it didn't seem to get rid of the new error... not sure what could be causing it to not work....any thoughts? Quote Link to comment https://forums.phpfreaks.com/topic/168681-error-message-when-performing-a-search/#findComment-889918 Share on other sites More sharing options...
jonsjava Posted August 3, 2009 Share Posted August 3, 2009 missing a "}" <?php try { $Q = new COM("ixsso.Query"); $util = new COM("ixsso.util"); $Q->Catalog = "E:\GROUP\BIWeb\jha"; $Q->Query = $_POST['query']; $Q->Columns = "filename, rank, vpath, path, DocTitle, characterization, All"; $Q->SortBy = "rank[d]"; $Q->MaxRecords = 200; $fileRS = $Q->CreateRecordSet("nonsequential"); if(!$fileRS->RecordCount == 0) { $fileRS->MoveFirst(); } while($i < $fileRS->RecordCount) { //etc...} //etc... } } catch (Exception $e) { echo '<pre>'."\n"; echo "\t".'Error with COM---'."\n\n"; echo "\t\t".'ERROR: - ' . $e->getMesage() . "\n"; echo '</pre>'; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/168681-error-message-when-performing-a-search/#findComment-889922 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.