autoverse
Forum Replies Created
-
Forum: Plugins
In reply to: [Magic Fields 2] Fields Not Saving After PublishHello,
Sorry I didn’t get back to share my progress.
I found the problem, and a friend developed a solution.
What was going on was that I anticipated that a user might “machine gun click” the “add field” link.
When this happened, 3-4 clicks might be able to get in before the first field shows up.
These 3-4 clicks ALL register correctly, but they all have the same ID. What was happening was that out of the fields that had the same ID, only the last one would save to the database.
To fix this, my friend wrote some code so that when you click the “add field” link, it disappears, so you cannot machine-gun click.
He later wrote code so that if you deleted all your fields, save for one, the link would return.
Does this make sense?
Did anyone bother to read OP’s message that says to send questions via email at the specified email address?
WP Roles at Registration will do this. When my users have to select where they’re from, it places them into a geographic role.
Forum: Plugins
In reply to: [Email Login] [Plugin: WP Email Login] Internet Explorer Text Display IssueHi Beau – this is jlankford on another account (didn’t realize I had this one). The following is happening:
Message: ‘childNodes.0’ is null or not an object
Line: 96
Char: 3
Code: 0
URI: http://www.richsrecipes.net/wp-login.php?redirect_to=http%3A%2F%2Fwww.richsrecipes.net%2FAlso, as you can see, there’s a redirect in there too.
Forum: Plugins
In reply to: [Magic Fields 2] Fields Not Saving After PublishThanks for your reply, Hunk.
The max-input-vars is undefined in my php.ini file. I assume that it’s set to ‘1000’ by default.
I have the following fields in my group:
“Author” (unduplicated textbox)
“Ingredients” (duplicated textbox)
“Directions” (duplicated textbox)
“Finishing Instructions) (unduplicated multi-line)
“Recipe Image” (duplicated image)If I enter ONE entry in each field, it’s fine. Once I begin to insert duplicates I have problems.
Any idea?
Forum: Plugins
In reply to: [Download Code Redeemer] [Plugin: Download Code Redeemer] Code viewing???It’s difficult to do this because you have to create a form that edits the database. You can accidentally do a self-injection if you used a funny character in one of your custom codes.
BUT if you insist on being able to view and edit codes, it’s not too hard if you wanna do it manually. Be warned that if you mess up the database, you WILL have to redo everything. This means a bunch of useless codes if you never backed them up.
1.) Go into your web host contol panel. You’re going to want to go into the MYSQL settings.
2.) Get into PHPMyadmin
3.) Look for your WordPress database (click on databases until you find one with “wp_” as a prefix on all the tables
4.) Look for wp_DCR_codes
5.) Click Browse
6.) Here are your codes. You may edit them as they aren’t hash encrypted. If you export this CSV, edit the codes column in excel, and import using “replace values” then you can do the codes manually.Complex, but possible. Good luck, and don’t mess up your database. ALWAYS BACK UP!
Forum: Plugins
In reply to: [Easy FTP Upload] [Plugin: Easy FTP Upload] What EXACTLY does it?If you knew PHP enough and were comfortable navigating a MySQL database, you could find a way to add a few inputs to the form, and then have the script write to the media database after it uploads. You would have to make sure each field is accounted for, and you would have to figure out a way to avoid redundant ID numbers. I don’t know how to do any of this, but maybe you could find someone who can.