wbtdc
wbtdc
In fact, I just found in your tests an $auth->isAuthorized() call. If I do that after providing bad credentials, it comes back with a result of 1. I'm new to...
Yeah I just found this in BasicAuth.php: ``` /** * {@inheritdoc} */ public function isAuthorized() { return (!empty($this->userName) && !empty($this->password)); } ``` Looks like you forgot to unstub a stub....
Are there any other "surprises" like this I should know about before I start rolling out Mautic for my clients? I was really hoping to have a winner in terms...
Look at the code I posted about "isAuthorized ()". If the user name and password are not blank, it returns true. Also, I posted the Auth object that is returned...
Actually, to follow up on this, it looks like your code actually made the target remote instead of me. Here's my updated code: ``` echo "To is $to"; echo "Rsync...
OK, I think I figured out I don't need to add the user and host myself to the $from or $to fields. I think your $config['remote_origin'] = true | false...
I finally figured out how to call it right. I was trying to build the user@host: part onto the source or dest myself and then you were doing it based...