Sergio
Sergio
I'm having trouble determining if an object has a property: ``` php if (!empty($deal->start_date)) { echo $deal->start_date; //outputs nothing, does not enter the if } $start_date = $deal->start_date; if (!empty($start_date))...
I have a SupplierForm and a SupplierTranslationForm. SupplierForm adds a collection of SupplierTranslationForm and if I dump $child values like this within my custom `collection.php`: ``` foreach ((array)$options['children'] as $k...
I see log messages that seem to indicate that the camera is connecting to Xiaomi, even if Cloud is disabled. from `/tmp/log.txt`: ``` [./cloud][8/27/10:9:40:100]: cloud.c(webapi_do_login-2349) cmd = /home/app/cloudAPI -c 138...
If a user denies access to his/her Facebook account, I need a way to display an error and redirect to another page. I understand that hauth/endpoint executes the following command:...
Not sure if this is the right place to ask about this. I have a website with basic HTTP auth via Apache. I saved the credentials to log in with...