<?xml version="1.0"?><rss version="2.0" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Administration</title><link>https://www.dnnhero.com/Forum/forumid/1/scope/threads</link><description></description><pubDate>Mon, 27 Apr 2026 20:54:14 GMT</pubDate><lastBuildDate>Thu, 17 Oct 2019 07:44:02 GMT</lastBuildDate><ttl>30</ttl><item><title>Two Portals same Domain</title><pubDate>Thu, 17 Oct 2019 07:44:02 GMT</pubDate><dc:creator>Dave</dc:creator><link>https://www.dnnhero.com/Forum/forumid/1/threadid/6138/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/1/threadid/6138/scope/posts</guid><description>&lt;p&gt;Hi Aderson&lt;/p&gt;
&lt;p&gt;Brilliant&lt;/p&gt;
&lt;p&gt;I've tested steps 1 and 2 and they work a treat&lt;/p&gt;
&lt;p&gt;I'll test step 3 when I get to moving the main site&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Dave&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/1/threadid/6138/scope/posts</comments></item><item><title>Many Host Alerts - "Resource Not Found" in Admin Log</title><pubDate>Fri, 25 Jan 2019 11:01:11 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/1/threadid/6102/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/1/threadid/6102/scope/posts</guid><description>&lt;p&gt;Hi Tom,&lt;/p&gt;
&lt;p&gt;Do you get any other details from the log entry? Like which resource it is complaining about?&lt;/p&gt;
&lt;p&gt;Cheers,&lt;/p&gt;
&lt;p&gt;Aderson&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/1/threadid/6102/scope/posts</comments></item><item><title>Active Directory - Guidance / Manual</title><pubDate>Fri, 25 Jan 2019 10:59:54 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/1/threadid/6097/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/1/threadid/6097/scope/posts</guid><description>&lt;p&gt;Thanks for the note Tom!&lt;/p&gt;
&lt;p&gt;I have used AD from Glanton in the past with great success.&lt;/p&gt;
&lt;p&gt;Cheers,&lt;/p&gt;
&lt;p&gt;Aderson&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/1/threadid/6097/scope/posts</comments></item><item><title>Intranet</title><pubDate>Tue, 19 Jun 2018 18:43:02 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/1/threadid/6077/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/1/threadid/6077/scope/posts</guid><description>&lt;p&gt;Hi Dave,&lt;/p&gt;
&lt;p&gt;1 - 3rd party modules will not behave as local machines on intranets - You need them licensed as it site was a regular public site. Sorry;&lt;/p&gt;
&lt;p&gt;2 - I was not the one setting it up but we used this module&amp;nbsp;http://store.dnnsoftware.com/home/product-details/active-directory-authentication-v35 for AD integration with a DNN 8 site and it works very well.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;My 2 cents.&lt;/p&gt;
&lt;p&gt;Cheers,&lt;/p&gt;
&lt;p&gt;Aderson&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/1/threadid/6077/scope/posts</comments></item><item><title>DNN 9 "Remove Deleted Users" gone?</title><pubDate>Tue, 06 Feb 2018 16:57:09 GMT</pubDate><dc:creator>Chad</dc:creator><link>https://www.dnnhero.com/Forum/forumid/1/threadid/5702/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/1/threadid/5702/scope/posts</guid><description>&lt;p&gt;FYI, I found this thread very helpful in reducing our spam accounts. I modified the scripts though to make them a bit more robust in wrapping all the transactions related to a user into a single transaction, so if one fails, that user account is not corrupted. This could be put into a stored procedure easily enough. Note this uses the presumption that you used another script to update the UserPortals.IsDeleted to 1 for those that you feel need to be deleted.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;DECLARE @i int
DECLARE @user_id int
DECLARE @numrows int
DECLARE @userToDelete_table TABLE (
    idx smallint Primary Key IDENTITY(1,1)
    , UserId int
)

SET NOCOUNT ON

-- populate user table in-memory table to hold distinct user id
INSERT @userToDelete_table
Select Distinct UserId
From UserPortals 
WHERE PortalID = 1 and IsDeleted = 1

-- enumerate the table

SET @i = 1
SET @numrows = (SELECT COUNT(*) FROM @userToDelete_table)
IF @numrows &amp;gt; 0
    WHILE (@i &amp;lt;= (SELECT MAX(idx) FROM @userToDelete_table))
	--WHILE (@i &amp;lt;= 1000)
    BEGIN
        -- get the next primary key
        SET @user_id = (SELECT UserId FROM @userToDelete_table WHERE idx = @i)
		
		--
		BEGIN TRAN
			PRINT('******************************************')
			PRINT('UserId to Delete: ' + CAST(@user_id as varchar(10)))

			DELETE UserRoles WHERE UserID = @user_id
			PRINT('UserRoles Deleted for User ID: ' + CAST(@user_id as varchar(10)) + '. Rows Deleted: ' + CAST(@@ROWCOUNT as varchar(10)))
			
			DELETE UserPortals WHERE UserID = @user_id
			PRINT('UserPortals Deleted for User ID: ' + CAST(@user_id as varchar(10)) + '. Rows Deleted: ' + CAST(@@ROWCOUNT as varchar(10)))

			DELETE userprofile WHERE UserID = @user_id
			PRINT('userprofile Deleted for User ID: ' + CAST(@user_id as varchar(10)) + '. Rows Deleted: ' + CAST(@@ROWCOUNT as varchar(10)))
			
			DELETE aspnet_membership WHERE UserId = 
				(
					SELECT au.UserId 
					FROM dbo.aspnet_Users as au INNER JOIN
                         dbo.Users as u ON au.UserName = u.Username
					WHERE  u.UserID = @user_id
				)
			PRINT('aspnet_membership Deleted for User ID: ' + CAST(@user_id as varchar(10)) + '. Rows Deleted: ' + CAST(@@ROWCOUNT as varchar(10)))
			
			DELETE aspnet_users WHERE UserId = 
				(
					SELECT au.UserId 
					FROM dbo.aspnet_Users as au INNER JOIN
                         dbo.Users as u ON au.UserName = u.Username
					WHERE  u.UserID = @user_id
				)
			PRINT('aspnet_users Deleted for User ID: ' + CAST(@user_id as varchar(10)) + '. Rows Deleted: ' + CAST(@@ROWCOUNT as varchar(10)))
			
			DELETE Users WHERE UserID = @user_id
			PRINT('Users Deleted for User ID: ' + CAST(@user_id as varchar(10)) + '. Rows Deleted: ' + CAST(@@ROWCOUNT as varchar(10)))

			PRINT('')
			PRINT('')

		COMMIT    

        -- increment counter for next employee
        SET @i = @i + 1
    END
&lt;/pre&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/1/threadid/5702/scope/posts</comments></item><item><title>Spam forum attacks</title><pubDate>Mon, 15 Jan 2018 10:08:35 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/1/threadid/5991/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/1/threadid/5991/scope/posts</guid><description>&lt;p&gt;Thank you Richard.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;It was the blog module. seemed to be manual updates. I think I may have gotten in control&lt;/p&gt;
&lt;p&gt;Thank you for the offer Richard!&lt;/p&gt;
&lt;p&gt;Aderson&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/1/threadid/5991/scope/posts</comments></item><item><title>Goodbye Span Registrations forever</title><pubDate>Fri, 11 Aug 2017 14:50:45 GMT</pubDate><dc:creator>richard</dc:creator><link>https://www.dnnhero.com/Forum/forumid/1/threadid/5485/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/1/threadid/5485/scope/posts</guid><description>&lt;p&gt;Hi Aderson&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I will retry the upgrade as I tried 7 to 9 and things were quite broken.&amp;nbsp; Ill try 7 to 8 and see if that's better.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/1/threadid/5485/scope/posts</comments></item><item><title>Custom Role with Special Character</title><pubDate>Mon, 28 Nov 2016 12:42:57 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/1/threadid/5250/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/1/threadid/5250/scope/posts</guid><description>&lt;p&gt;Thanks for sharing Michael - Sometimes you have to "kick the bucket" to have things refreshed on DNN's interface. It is about cached data. I always make sure I force a site recycle when I want to ensure changes to the DB are reflected on the site.&lt;/p&gt;
&lt;p&gt;Cheers,&lt;/p&gt;
&lt;p&gt;Aderson&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/1/threadid/5250/scope/posts</comments></item><item><title>DNN 8 Administrator permission</title><pubDate>Mon, 31 Oct 2016 18:22:54 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/1/threadid/4121/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/1/threadid/4121/scope/posts</guid><description>&lt;p&gt;Thank you for sharing your finding Dave!&lt;/p&gt;
&lt;p&gt;Cheers,&lt;/p&gt;
&lt;p&gt;Aderson&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/1/threadid/4121/scope/posts</comments></item><item><title>DNN8 Bulk Installer Missing</title><pubDate>Mon, 26 Sep 2016 19:16:47 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/1/threadid/4150/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/1/threadid/4150/scope/posts</guid><description>&lt;p&gt;Grat that it worked!&lt;/p&gt;
&lt;p&gt;Thank you for letting us know Tyler.&lt;/p&gt;
&lt;p&gt;Aderson&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/1/threadid/4150/scope/posts</comments></item><item><title>jQuery is Undefined for Regular Users</title><pubDate>Thu, 08 Sep 2016 09:42:12 GMT</pubDate><dc:creator>michael</dc:creator><link>https://www.dnnhero.com/Forum/forumid/1/threadid/4180/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/1/threadid/4180/scope/posts</guid><description>&lt;p&gt;Thanks for your reply. It is a really odd problem. I looked at my html source and did a lookup for jQuery and it's not even attempting to load when a user is logged in. There's a bunch of scripts that are commented out in the source but none of them are the basic jQuery.min.js. I was able to create a patch for the problem. I created a module that was placed on all pages (that's a really handy feature) that on page pre-render forces jQuery to load. That has fixed the issue for now so I can move on but I'd still like to figure out what went wrong here.&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/1/threadid/4180/scope/posts</comments></item><item><title>Templates - exporting and using</title><pubDate>Fri, 02 Sep 2016 09:13:17 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/1/threadid/4145/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/1/threadid/4145/scope/posts</guid><description>&lt;p&gt;Hi Dave,&lt;/p&gt;
&lt;p&gt;Thanks for this level of details! You should write an article about your experience once you are done. I would gladly publish it on DNNHero and could potentially turn it to a video tutorial as well.&lt;/p&gt;
&lt;p&gt;Thank you!&lt;/p&gt;
&lt;p&gt;Aderson&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/1/threadid/4145/scope/posts</comments></item><item><title>Exception+has+been+thrown+by+the+target+of+an+invocation.&amp;content=0</title><pubDate>Wed, 31 Aug 2016 15:11:21 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/1/threadid/4165/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/1/threadid/4165/scope/posts</guid><description>&lt;p&gt;Thank you for letting us know Michael. At least you know it is related to the DLLs you placed.&lt;/p&gt;
&lt;p&gt;Aderson&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/1/threadid/4165/scope/posts</comments></item><item><title>DNN 7.2 site down after autoupdate</title><pubDate>Wed, 25 May 2016 16:38:44 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/1/threadid/4106/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/1/threadid/4106/scope/posts</guid><description>&lt;p&gt;Hi Tom,&lt;/p&gt;
&lt;p&gt;First is that a DNN site doesn't auto update if you haven't copied newer files on top of it. Maybe you haven't done it but maybe someone else did it. If this is not the case, then the problem must be something else.&lt;/p&gt;
&lt;p&gt;In any case we have a video series just covering troubleshooting @ DNHero -&amp;nbsp;&lt;a href="http://www.dnnhero.com/Premium/Tutorial/ArticleID/278/7-Techniques-to-troubleshoot-problems-on-your-DNN-website-Part-1-5"&gt;http://www.dnnhero.com/Premium/Tutori...&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Thatg should help you going about different strategies.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Aderson&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/1/threadid/4106/scope/posts</comments></item><item><title>HTML5 compliance</title><pubDate>Wed, 21 Oct 2015 09:57:17 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/1/threadid/3953/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/1/threadid/3953/scope/posts</guid><description>&lt;p&gt;Hi Chris,&lt;/p&gt;
&lt;p&gt;IT seems to be possible but to be honest I don't know the ins and outs. It seems these guys know it. Seems to be pretty fresh information:&lt;/p&gt;
&lt;p&gt;http://www.dnncreative.com/video/how-to-achieve-dnn-html5-compliance-converting-your-dnn-theme-to-html5&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Aderson&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/1/threadid/3953/scope/posts</comments></item><item><title>New User - Email Notifications</title><pubDate>Mon, 06 Jul 2015 09:21:24 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/1/threadid/3860/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/1/threadid/3860/scope/posts</guid><description>&lt;p&gt;Hi Dave,&lt;/p&gt;
&lt;p&gt;I would recommend that you try to send some test emails from Admin/Newsletters to see if you get more specific error messages and to see if you can get any Event Log error as well.&lt;/p&gt;
&lt;p&gt;I would also test the SMTP settings under Host/Host Settings as well. There is a "Test" button over there which sends an email to the emails address set under Host/Host Settings/Host Details/Host Email&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Aderson&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/1/threadid/3860/scope/posts</comments></item><item><title>Upgrade produces DNN Error</title><pubDate>Mon, 15 Jun 2015 12:16:31 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/1/threadid/1752/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/1/threadid/1752/scope/posts</guid><description>&lt;p&gt;Hi Dave,&lt;/p&gt;
&lt;p&gt;1 - I'm not aware of such options. I don't think there are another options like that available;&lt;/p&gt;
&lt;p&gt;2 - Usually 3rd Party URL rewriters can be disabled inside the web.config. I would open up the one you have, try to find references about TanLD and replace by looking at the web.config os a fresh DNN install from the same version of your original DNN site.&lt;/p&gt;
&lt;p&gt;That would be the strategy we would use.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Aderson&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/1/threadid/1752/scope/posts</comments></item><item><title>Deleting Redundant Portals</title><pubDate>Wed, 13 May 2015 14:57:33 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/1/threadid/1753/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/1/threadid/1753/scope/posts</guid><description>&lt;p&gt;Hi Dave,&lt;/p&gt;
&lt;p&gt;Not sure what you mean by "redundant portals", but if these are portals that were created and never used then that is a good approach and DNN does remove records of those portals from the DB.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Aderson&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/1/threadid/1753/scope/posts</comments></item><item><title>Spam Reg</title><pubDate>Thu, 12 Mar 2015 10:25:35 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/1/threadid/1629/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/1/threadid/1629/scope/posts</guid><description>&lt;p&gt;Hi David,&lt;/p&gt;
&lt;p&gt;That is strange. You said "&lt;span style="color: #000000; background: #f7f7f7;"&gt;&lt;span style="color: #000000; background: #f7f7f7;"&gt;get even more e&lt;/span&gt;mails from Administrator reporting a failed registration&lt;/span&gt;" - Can you post here the contents of that failed registration email?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Aderson&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/1/threadid/1629/scope/posts</comments></item><item><title>All admins are receiving new user notifications</title><pubDate>Thu, 30 Oct 2014 09:27:22 GMT</pubDate><dc:creator>Paul</dc:creator><link>https://www.dnnhero.com/Forum/forumid/1/threadid/1400/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/1/threadid/1400/scope/posts</guid><description>Yeah that is an all or nothing setting looks like.&amp;nbsp; My main thing is verifying that the behavior i'm seeing now (all admins receiving these) is expected, and not something I have configured wrong.&amp;nbsp; It seems if it's expected that it is a change in behavior from past versions of DNN, but I haven't been able to find confirmation on that.&amp;nbsp; Thank you!</description><comments>https://www.dnnhero.com/Forum/forumid/1/threadid/1400/scope/posts</comments></item><item><title>More...</title><wfw:link>https://www.dnnhero.com/DesktopModules/Forum/Forum_Rss.aspx?forumid=1&amp;mid=858&amp;tabid=261&amp;threadspage=2</wfw:link></item></channel></rss>