Each time I want to test the DotNetNuke module I’m working on, I uninstall it from the DNN website host control panel, I zip my module dev folder, and then I reinstall it from the DNN website.
Is there any faster way to test my module?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Are you testing the install process?
If not – all the changes in
DesktopModules/YourModuleorApp_Code/YourModulewill take effect immediately and will be ready for testing (assuming you’re using a Website project, and your virtual directory is pointing to your dev. directory)If you’re using the Web Application project – make changes, build, move the files to the virtual directory target folder, then test.
Let me know if this helps.