Our products listed at:


The premiere site for DotNetNuke modules and skins.

You are here > Support > Forums
Forum
 
ForumForumSoftwareSoftwareSeeleyWare.Auto...SeeleyWare.Auto...Export tokens list not workingExport tokens list not working
Previous Previous
 
Next Next
New Post
 9/4/2008 5:55 AM
 

Hello,

 

When I click on the Export Tokens List link, it leads me the en error page: 

The resource cannot be found.

Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable.  Please review the following URL and make sure that it is spelled correctly.

Requested URL: /DesktopModules/SW.AutoLogon/QueryExport.aspx

 

I would like also to know where I can find the tokens in the dnn database, to be able to use them in a redirect page.

 

Thank you,

 

Julien

New Post
 9/4/2008 9:25 AM
 

Found that the module installer was missing a reference to the queryexport.aspx in the .DNN file (config file).  I posted a patch on snowcovered and updated the trial here to include that.  Alternatively you can extract the SWAutoLogon.dnn file and add a file inclusion for QueryExport.aspx (<file><name>QueryExport.aspx</name></file>) and it will install with that file.  Likewise, you could extract the QueryExport.aspx file and copy it directly to your [portalroot]/DesktopModules/SW.AutoLogon folder.

The tokens could be located in one of two spots depending on whether you are using the "Legacy" mode or not.  If not, it is stored in the user's profile and you could obtain a list of them by running the following SQL command (or a variation of the same):

select * from UserProfile where PropertyDefinitionID = (select propertydefinitionid from ProfilePropertyDefinition where PropertyName = 'SW.AL.TOKEN' and PortalID = 0)

Otherwise if you are using the Legacy mode, you could extract them by running the following SQL command:

select * from SW_AutoLogin_Logins where Token is not null and Token <> ''

The QueryExport.aspx will correctly grab and export those values to a CSV file for you.

New Post
 9/5/2008 1:34 AM
 

Thank you for your reply.

Everything is working fine now.

Regards,

Previous Previous
 
Next Next
ForumForumSoftwareSoftwareSeeleyWare.Auto...SeeleyWare.Auto...Export tokens list not workingExport tokens list not working