Command line error with XAMPP on Yosemite - dyld: Symbol not found: _sqlite3_intarray_bind

I am trying to run a simple shell command from PHP. I am using XAMPP for OS X Yosemite, this is my script

<?php
$output = shell_exec(PHP_BINDIR.'/ffmpeg 2>&1');
echo "<pre>$output</pre>";
?>

      

I put my ffmpeg executable in /Applications/XAMPP/xamppfiles/bin

, but when I ran it I got this error on the page instead of the shell output:

dyld: Symbol not found: _sqlite3_intarray_bind
  Referenced from: /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
  Expected in: /Applications/XAMPP/xamppfiles/lib/libsqlite3.dylib
 in /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData

      

What does this error mean? Why is Sqlite3 involved?

+3


source to share





All Articles