rgipp1
Forum Replies Created
-
Same issue here
Might cause me to go with something else.Forum: Plugins
In reply to: [Admin Custom Login] Plugin causes an error message on login pageNo need to work on this.
I’m not sure if your plugin caused the issue or my redirect plugin.
But when I installed your plugin things went bad.
Then I had a issues still after that.
I removed both plugins and did some of my own plugins and I seem to be stable.
Best of luck
Forum: Plugins
In reply to: [Admin Custom Login] Plugin causes an error message on login pageI may have fixed this issue with a code change in the other plugin.
But I haven’t fully regression tested it.
Not sure why your plug would interact with $user_login variable.
Forum: Plugins
In reply to: [PHP Code Widget] First time didn’t workI’m running as Administrator.
I checked the administrator has unfiltered html capability.
Forum: Plugins
In reply to: [Buddypress Profile Rating] How to add/change text on rating pagesorry wrong plugin disregard
Forum: Plugins
In reply to: [RegistrationMagic - User Registration Forms Plugin] Waiting on ResponceThe person in support who replied to me basically said those tables are not meant to be accessed.
Forum: Plugins
In reply to: [RegistrationMagic - User Registration Forms Plugin] Waiting on ResponceI wasn’t able to accomplish what I wanted without writing my own PHP code.
I used PHP code to connect the the RM mySQL DB tables.
Here’s a snippet
<p style=”margin: 0in; font-family: Calibri; font-size: 11.0pt;”>[RM_Login]</p>
<?php
$con = mysqli_connect(‘www.xyz.com’, ‘fitnevq7_a8e’, ‘0700DFBc45p73h’, ‘fitnevq7_a8e’);
// Check connection
if ($con->connect_error) {
die(“Connection failed: ” . $con->connect_error);
}
$sql = “SELECT submission_id FROM a8e_rm_submission_fields”;
$result = $con->query($sql);
//simce the Registration Magic User registrations are in special RM tables we need to
//do special PHP scripting to get the user field we want
//This is the beginning of that scripting
$items = array();
$count = 0;$previousnum=$result->fetch_assoc();
while ($row = $result->fetch_assoc()){
//This gets all unique submission IDs. Which is the number in the RM submission fiels DB
if ($row != $previousnum) {
$count++;
$items[$count] = ($row[‘submission_id’]);
}
$previousnum = $row;
}$subids = array_unique($items);
$lastSubID=$subids[$count];
//echo “lastsubid = $lastSubID”;
$sql = “SELECT * FROM a8e_rm_submission_fields WHERE submission_id=$lastSubID”;
$result = $con->query($sql);while ($row = $result->fetch_assoc()){
if ($row[‘field_id’] == 50) {
$clientUsername = $row[‘value’] ;
}I think I found the issue.
It seems the issue is related to when I register a user and that user is auto logged in.I don’t think this will be an issue when my website is in production since a user should only register one from their computer.
It just makes it hard for testing.
Seems to be other strange behavior like adding fields twice when using same browser or computer.
I just created a new registration form and I was able to register 2 new users.
Something happened with my existing forms.Heck I have 3 questions at least a week old they never answered.
My questions are too tough for them so I’ve had to do coding on my own to add functionality.
Support is pretty bad, but I’ve got $80 of value out of the plugin.Not sure if you’re doing the same thing as me or not.
But my goal was to get all of the registration fields to a different and new MySQL DB.
I have been able to do that.
If that’s what you’re after let me know and I can share my method/code.