Joomla 3.6.5
CB 2.1.0
- Somehow the pmimassbay.org/forgot-login page is messing things up. It has a form that submits back to itself instead of submitting to the script that actually emails the username. Checking out the source code and searching for "<form " we see POST /forgot-login a couple of time actually. CB appears to be doing something odd
- I traced it to "/....../components/com_comprofiler/comprofiler.html.php", line 681 and put a temporary hard-coded fix:
. '<form action="' . $_CB_framework->viewUrl( 'sendNewPass', true, null, 'html', ( checkCBPostIsHTTPS( true ) ? 1 : 0 ) ) . '" method="post" id="adminForm" name="adminForm" class="cb_form form-auto cbValidation">';
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Current line
. '<form action="index.php?option=com_comprofiler&view=sendNewPass" method="post" id="adminForm" name="adminForm" class="cb_form form-auto cbValidation">';
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
My "fixed" line
Notice that $_CB_framework->viewURL somehow produces itself as the URL instead of what was requested. I wonder if if has something to do with permissions somewhere. Will have to do more research later but needed to take a break...
Any ideas why we're seeing this issue?
CB Auto Actions is not published
Joomla Redirect Component has nothing associated to the issue.