|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
  [2003-01-29 11:33 UTC] dominik dot lebar at ensico dot si
 When I try to invoke 
  $Q = new COM("ixsso.Query"); 
apache crashes. It's a component of the Microsoft Index Server and this works fine under IIS and ASP pages. I tried to use 2.0.43 and 2.0.44. Same on both of them.
Best regards,
  Dominik
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             | |||||||||||||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 11:00:01 2025 UTC | 
I'm trying to write a search form using PHP Version 4.3.0, Apache version 2.0.44, Windows NT 4.0 with service pack 6 and Microsoft Index Server 2.0. I used example from IISSamples - ASP (query.asp). ASP example works fine on IIS 4.0 - I use Index Server for indexing Word and PDF documents and is essential part of my intranet. After submiting a form (using POST method), page calls itself and retrieves a search string. The first and only line after it causes Apache to crash. The line is Index Server COM object creation using line : $Q = new COM("ixsso.Query"); $Util = new COM("ixsso.Util"); I have commented everything bellow including the second line and crash is reproducible. Hope enough information was provided. Best regards, DominikOriginal lines from ASP : Q = Server.CreateObject("ixsso.Query"); util = Server.CreateObject("ixsso.Util"); Q.Query = "test"; Q.Columns = "DocTitle, Vpath, filename, size, write, characterization, rank, path, DocSubject, DocKeywords"; RS = Q.CreateRecordSet("nonsequential"); but as I said I have commented all the lines after first line. I have read in some forum that someone did succeed to integrate PHP with Microsoft Index Server. Best regards, Dominik