Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Contact Search crashes PHP toolkit, other scripts fine
Hi,
I am running a few different PHP scripts from the command line that work fine using the PHP Toolkit. Today I tried to create a new script that calls a saved search for contacts. This new script crashes PHP when the search is called.
Has anyone seen similar problems?
This is running on Windows Server 2008 R2
I have tried PHP 5.2.13 and 5.2.14
This is the code:
$itemSearch = new nsComplexObject("ContactSearchAdvanced");
$itemSearch->setFields(array("savedSearchId" => '58'));
$myNSclient->setSearchPreferences(true, 100);
$searchResponse = $myNSclient->search($itemSearch);
0