Thu Nov 17, 2011 9:50 am |
Replies: 5 |
Views: 6193 |
|
 |
I found the reason why it is not working.
I just started working in this company so I didn't know their system. There is a separate php.ini that is being processed when running scripts in CLI mode ...
|
Thu Nov 17, 2011 6:57 am |
Replies: 5 |
Views: 6193 |
|
 |
I found where the problem is. Here is the code:
$sSmsData = urlencode(serialize($oSmsData));
$arg = escapeshellarg($sSmsData);
$command = dirname(__FILE_ ...
|
Wed Nov 16, 2011 10:06 am |
Replies: 5 |
Views: 6193 |
|
 |
Also, DebugBreak() is working perfectly in some occasions.
In the one occasion that I really need - it's not working. The file is outside of webroot so maybe that is the reason. It is a class file ...
|
Wed Nov 16, 2011 7:57 am |
Replies: 5 |
Views: 6193 |
|
 |
I've put DebugBreak() inside a constructor, and I also put a file_put_contents() in order to know if the constructor was executed:
public function __construct()
{
f ...
|