Well I'll try to clearify.. I'm trying to find out posibilities of installing module to DotNetNuke site. So firstly I've developed the module useing DotNetNuke source package, by adding new folders and files with DotNetNuke's logic (Data access layer, Business layer and Presentation layer) and the module worked fine. Then I've made the compiled module's PA package (with all needed files: sql scripts, app_code files, .dnn files and so on..). So i've removed previous module folders from DotNetNuke salution also I've removed every table and stored procedure of my module from DotNetNuke database to see what happens when installing modules from PA.
So, what I saw was: that parser has read .dnn file correctly, it has made sql tasks from sql script, but when it came to that section of creating folders and copying files from PA to DotNetNuke salution, parser has only made tasks, that are connected to presentation layer (the path: ~\DesktopModules\MyModule). And then parser has stopped and threw an error, written in my previous post.
As I understand the problem is that parser couldn't create the folders connected to MyModule in App_code and copy files from PA to that folders. The parser has no permission to create folders and copy files to App_code directory.(???)
So, I've tried to create folders manualy, rebuilt the site and then install the module from PA,- the result was the same
So, I've tried to register MyModule folder in web.config, rebuilt the site and then install the module from PA,- the result was the same
So, I've tried to change trust level to Full trust in web.config, rebuilt the site and then install the module from PA, - the result was the same
I'm sure that there are somebody have ever installed module from PA, so what do they do and what I am doing wrong? (I'm useing DotNetNuke 4.3.7)
Thanks