View Full Version : Setting up problems
kanga
05-03-2010, 08:29 AM
Hi everybody
I'm very new to php and mysql and having purchased the User Registration Solution am having problems getting everything to work. I've setup a database on my server and have uploaded the files to the root directory but l cannot login through the admin page. It will not accept my username or password. Its probably something very simple in my settings but l'm pulling my hair out trying various permutations.
I would be most appreciative if someone would contact me and possible look at my site and check my settings etc.
Look forward to hearing from anybody who could help a newbie.
Regards
Keith
Jason Byrnes
05-04-2010, 06:54 AM
I have created a support ticket so we can look into this issue further.
To view and edit your support ticket, please log into your support history:
http://www.webassist.com/mywebassist/login.php
darryl394578
05-04-2010, 07:00 AM
I'm a newbie, too, and need help. most aspects seemed to be okay. I was able to register and the info went into my database. Now that has changed, but I may be able to ge that back. I cannot get the email to be sent. I asked my hosting company if they supported the php mail()function and the answer was, YES, but I can't get it to work.
Also, after hitting submit on the registration page, should it go to a different page? How do I point it to the page I want?
Jason Byrnes
05-04-2010, 07:31 AM
yes, the registration page should redirect to the profile page, If it does not, it is most likely because the email behavior is not being triggered, so the two problems are most likely linked to the same cause.
can you send a copy of the registration page so I can examine the code.
darryl394578
05-04-2010, 07:46 AM
I'll show my ignorance here, but, I tried to attach the php file and it doesn't accept that format. Then I copied the source code to Word and tried to upload that, but the file size was too large. Please walk me through what I need to do to send you my registration page.
Jason Byrnes
05-04-2010, 08:12 AM
please compress the php file to a zip archive and attach the zip file.
darryl394578
05-05-2010, 04:51 AM
Here's my user_Registration.php file.
Jason Byrnes
05-05-2010, 08:05 AM
the most likely culprit is validation.
find the following:
if ($WAFV_Errors != "") {
PostResult($WAFV_Redirect,$WAFV_Errors,"usersRegistration");
}
and change it to:
if ($WAFV_Errors != "") {
die($WAFV_Errors);
PostResult($WAFV_Redirect,$WAFV_Errors,"usersRegistration");
}
this will write a comma separated list of failed validations to the screen that we can use for troubleshooting, please post back this information.
darryl394578
05-06-2010, 06:08 AM
The error was: ,19 that's all.
Jason Byrnes
05-06-2010, 06:25 AM
validation 19 is the user country:
$WAFV_Errors .= WAValidateRQ(((isset($_POST["UserCountry"]))?$_POST["UserCountry"]:"") . "",true,19);
looks like you have deleted the user country form element, so you will need to delete that line from the validation.
darryl394578
05-07-2010, 08:27 AM
Okay, I've been working on it. I've got the registration page to go to the User_Profile page after completing and clicking SUBMIT, but it doesn't send an email, still.
The users_Profile page didn't have any fields, just the "No Records Found," "Your email has not been verified," and the verify button.
I clicked on the Verify button and then came up with the message, "An email has been sent to ... Please follow the link included in that email in order to confirm this email address is valid."
can be seen at www.ochomehealth.com/users_Registration.php
darryl394578
05-11-2010, 05:51 AM
Is there any other way to get support for setting up the User Registration Pack? I've been posting and reading for several days now and I'm no further ahead. I subscribed to another thread much like mine in hopes that their answers can help me, too.
Jason Byrnes
05-11-2010, 10:59 AM
I have created a support ticket so we can look into this issue further.
To view and edit your support ticket, please log into your support history:
http://www.webassist.com/mywebassist/login.php
vBulletin® v3.8.1, Copyright ©2000-2012, Jelsoft Enterprises Ltd.