I no longer receive emails when someone registers, although they appear in the "Waiting" queue, they do not appear in Approve Admin Waiting main admin page and my customized approval and rejection notices defaulted.
Joined: Aug 30, 2005 Posts: 3186 Location: near Albany NY
Posted:
Thu Jun 12, 2008 5:52 pm
Did you have some version of Approve Membership running? If so, it's possible that an upgrade to RN2.20 might have overwritten it. Montego, I believe has a version of Approve Membership you might be able to use with RN2.20. On the other hand you might be well advised to wait a few months for rn2.30. It looks like we'll incorporate an improved CNBYA in it and that should have all the features you need without the threat of having it overwritten by the next upgrade process.
I upgraded from 6.5 and the "Protector Module", which BTW for anyone still using Protector, it's no longer a "Protector" and has been compromised. At any rate, I use the built-in "Resend Email" to modify or delete users when they apply. Can't always catch 'em in time but it's an alternative to bulking up your install with a lot of mods. Keeping up with "Tracked IP" in Sentinel works quite well.
Joined: Aug 29, 2004 Posts: 9133 Location: Arizona
Posted:
Fri Jun 13, 2008 5:46 am
steve_lemaster, were you using the full version of Approve Membership from Ulsoft or were you using my "Lite" version? Do you recall if you were using any of the additional fields capability? If so, then its the full version. If not, you could do as fkelly has suggested and simply use my "Lite" version. With each RN release, I update that to match within the first two weeks.
steve_lemaster, were you using the full version of Approve Membership from Ulsoft or were you using my "Lite" version? Do you recall if you were using any of the additional fields capability? If so, then its the full version. If not, you could do as fkelly has suggested and simply use my "Lite" version. With each RN release, I update that to match within the first two weeks.
Sorry for the delay.
I am using the full version of approve admin. And after looking at my current RN install, it would appear that I borked it.
Ah well, you know what they say about amateurs trying to do a complex task. I have no clue how to fix my site and brother, it's a mess. I am too terrified messing with anything else for fear of making it worse. XAMPP does me no good because I can never get anything to work right locally.
Joined: Aug 29, 2004 Posts: 9133 Location: Arizona
Posted:
Tue Jun 17, 2008 5:38 am
I realize that "borked" is a technical term - lol - but it has way too many meanings.
Tell you what, please, using phpMyAdmin, dump the Structure AND Data from the following two tables to a file:
nuke_users
nuke_users_temp
zip the file up and send it to me at montego AT montegoscripts DOT com and I'll give you back a set of ALTER statements that will get you back to where you can at least run RavenNuke cleanly.
Yes, you will lose your existing added fields data, however, the good news is that with RavenNuke 2.30.00 that is in the works, you will have a far superior version of the Your Account module that will blow away what you had previously.
Joined: Aug 29, 2004 Posts: 9133 Location: Arizona
Posted:
Tue Jun 17, 2008 5:39 am
steve_lemaster, actually, I don't need the data unless you want me to just give you the replacement tables and data back to you to just blow away and replace your current two tables.
You may as well be speaking Greek to me, Montego. I just don't want to lose all of my members and form posts. It's been up for a little more than a year and it alreadt has 1.5 million+ visitors.
Joined: Aug 29, 2004 Posts: 9133 Location: Arizona
Posted:
Wed Jun 18, 2008 6:24 am
So, I looked above in the thread and noticed that new users are able to register? Please confirm that. The reason is that if they are, then you were not using the full Approve Membership module, which has the extra fields on the nuke_users table at least. There is no way that the new user would be able to confirm their registration if these fields are still on that table.
If you could, please, log into your control panel and using phpMyAdmin, do an export of just the Structure of the nuke_users table and post it here so I can see it. Otherwise, PM me your control panel user and password and I can take a look.
If it ends up you really were not using the full version, that means you were probably using my "lite" version and you could simply apply the latest of those from my site to get your approval process working again.
Joined: Aug 29, 2004 Posts: 9133 Location: Arizona
Posted:
Wed Jun 18, 2008 3:51 pm
Ok, I have analyzed your DB and it is definitely set up to be the full Approve Membership module. I have compared this against my Approve Membership Lite, which is the approval piece without the "extra fields". It is clear to me by reviewing your AM setup, that you have not configured any extra fields, so I suspect that you have only used this for the "approval" functionality.
Here is my recommendation:
1. Backup your database and files.
2. From within phpMyAdmin, execute the following SQL to remove the extra fields pieces:
Code:
DROP TABLE nuke_options1;
DROP TABLE nuke_options2;
DROP TABLE nuke_options3;
DROP TABLE nuke_options4;
ALTER TABLE nuke_pendingusers
DROP custom1,
DROP custom2,
DROP custom3,
DROP custom4,
DROP custom5,
DROP custom6,
DROP custom7,
DROP custom8,
DROP custom9,
DROP custom10,
DROP custom11,
DROP custom12,
DROP custom13,
DROP custom14,
DROP custom15,
DROP custom16,
DROP custom17,
DROP custom18,
DROP custom19,
DROP custom20,
DROP custom21,
DROP custom22,
DROP custom23,
DROP custom24;
ALTER TABLE nuke_users
DROP custom1,
DROP custom2,
DROP custom3,
DROP custom4,
DROP custom5,
DROP custom6,
DROP custom7,
DROP custom8,
DROP custom9,
DROP custom10,
DROP custom11,
DROP custom12,
DROP custom13,
DROP custom14,
DROP custom15,
DROP custom16,
DROP custom17,
DROP custom18,
DROP custom19,
DROP custom20,
DROP custom21,
DROP custom22,
DROP custom23,
DROP custom24,
DROP user_show_custom1,
DROP user_show_custom2,
DROP user_show_custom3,
DROP user_show_custom4,
DROP user_show_custom5,
DROP user_show_custom6,
DROP user_show_custom7,
DROP user_show_custom8,
DROP user_show_custom9,
DROP user_show_custom10,
DROP user_show_custom11,
DROP user_show_custom12,
DROP user_show_custom13,
DROP user_show_custom14,
DROP user_show_custom15,
DROP user_show_custom16,
DROP user_show_custom17,
DROP user_show_custom18,
DROP user_show_custom19,
DROP user_show_custom20,
DROP user_show_custom21,
DROP user_show_custom22,
DROP user_show_custom23,
DROP user_show_custom24;
ALTER TABLE nuke_users_temp
DROP custom1,
DROP custom2,
DROP custom3,
DROP custom4,
DROP custom5,
DROP custom6,
DROP custom7,
DROP custom8,
DROP custom9,
DROP custom10,
DROP custom11,
DROP custom12,
DROP custom13,
DROP custom14,
DROP custom15,
DROP custom16,
DROP custom17,
DROP custom18,
DROP custom19,
DROP custom20,
DROP custom21,
DROP custom22,
DROP custom23,
DROP custom24;
This will downgrade your tables back to the core RavenNuke level AND this will still work with my Approve Membership Lite. You will also not lose any of your user data, posts, etc. This just gets rid of the extra unneeded columns.
3. Get my Approve Membership Lite download and upload all the provided files per the instructions (you do not have to do the DB piece because after the above is done, you already have what you need). You can get that download here:
Only registered users can see links on this board! Get registered or login to the forums!
4. Done. Everything should work fine after that.
But, be sure not to skip the first step ALWAYS! Just in case... Also, if you are happy with the results, please do throw Raven here a donation; whatever you can spare. Helps to keep the "lights on".
Bring up your DB in phpMyAdmin and then click on SQL and then click the Browse button and navigate to the rn_gcalendar.sql file located in the path on your local drive to the distro files that you downloaded, then click on GO. Pay close attention to what Montego mentioned about the prefix, the default being "nuke". If yours is the same then proceed.
View next topic View previous topic
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum