-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ISSUE] Install works, script does not #13
Comments
I too had this issue. I did not find a work around and emailed the author ([email protected]) with no response. I wound up switching to a CMS to accomplish what I wanted in the time allowed. |
wow -too bad. I found an alternate solution as well. |
To be honest, the CMS solution I landed on was garbage too, but the clock was running out. Virtuemart on top of Joomla! is a pretty poorly documented setup. |
ouch..yes - VM is a tough setup... |
It is because $message is not defined. $message should be created if there is an error, but the $errors array is never turned into $message. Replace line 105 with: <?php
if(!empty($_POST))
{
if(count($errors) > 0)
{
?>
<div id="errors">
<?php errorBlock($errors); ?>
</div>
<?php } else { ?>
<div id="success">
<p><?php echo $message ?></p>
</div>
<? } }?> |
Jorgen's fix worked for me as well. |
very helpful, now i can see error messages! thanks! |
anyone stil here? im making a very big project and using the userpie registration and login system al worked but somehow it stopped working i get message saying and if i do something bad i get the errors where can this problem be? please help |
mrdecoder, it's been a while since I've looked at this code but take a look at my current pull request to see if your issues may have been fixed there. I think my code fixed six or so small bugs so it's possible it might cover yours as well: |
thanks ill take a look at the fixes i even made a part that is a user makes an account and activates all together i made a master peace :) 0when all is finnish ill show:) |
Hi there,
I have attempted to use this in both a bootstrap template and stand alone. Both on a MAMP and a live server.
The issue I'm seeing is that it 'act's' as if it accepts a registration, but nothing is written to the db. Have confirmed that db connection is correct.
Has any one else encountered this? If so what did you do to fix?
The text was updated successfully, but these errors were encountered: