|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2013-11-13 16:20 UTC] gopalv@php.net
-Status: Open
+Status: Feedback
[2013-11-13 16:20 UTC] gopalv@php.net
[2014-12-30 10:42 UTC] pecl-dev at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 16:00:02 2025 UTC |
Description: ------------ - Using built in server: /usr/local/php5/bin/php -S localhost:8080 -t /Users/User/Desktop/Projects/OpenFW/web - Process crashes with message: Process finished with exit code 139 - APC module is loaded: AlexanderC-MacBook-Pro:~ User$ php -m | grep apc apc apcu - Using prototype: bool apc_store ( string $key , mixed $var [, int $ttl = 0 ] ) - Code that reproduces the problem: <?php echo "trying to get apc working...", "\n"; var_dump((bool) apc_store('some_id', 'data here', 0)); exit('ok'); - gdb backtrace: Program received signal SIGSEGV, Segmentation fault. 0x000000010138a758 in ?? () Test script: --------------- <?php echo "trying to get apc working...", "\n"; var_dump((bool) apc_store('some_id', 'data here', 0)); exit('ok'); Expected result: ---------------- (bool) true || false Actual result: -------------- Process finished with exit code 139 - gdb backtrace: Program received signal SIGSEGV, Segmentation fault. 0x000000010138a758 in ?? ()