i have a default.aspx page that contains details from link.xml file.The data for the default.aspx page comes from a links.xml file. I want to migrate the default.aspx page to dnn. That is i need to include the data of the .xml file to the dnn page. I tried uploading the .xml file to the file manager and then importing the content to the module but it didn't work.
could you please help me with any module that helps me add the data of the xml to it.or any other way where i can add the data from the xml file.
You can do a couple of things to use XML in DNN.
1) Download/install the XML module, then point that module to your XML file.
2) Create a custom module that reads from the XML file.
I personally would go with #2 because building modules can be very easy and great development practice to learn the DNN platform.
Related
I have a situation where I have project which:
Contains 10 page files in project directory.
Contains 12 page in table Page in Access database.
I want to fix the project structure. What should I do?
If there are missing pages in project directory, there should be CenterDb rebuild done.
Steps:
Open the project.
Run rebuild of center database.
There would be message that will inform the user what pages are missing in project.
The next is to remove missing pages from project structure in explorer.
(or if user has access to missing pages, he should manually paste them in project directory)
I am unable to find this page in the Joomla files. I want to edit this table and place a link in every row in the table. This is a creative contact form plugin for Joomla.
The page link from the Joomla administrator is https://SITENAME.COM/administrator/index.php?option=com_creativecontactform&view=submissions
Thanks in advance.
If I see it right, it's not a plugin, it's a component. I assume that you want to change the view, not the database table.
You should find all the files that handle the output of these components in the directory:
JOOMLA/administrator/components/com_creativecontactform/views/
or for frontend in the directory
JOOMLA/components/com_creativecontactform/views/
The file you're looking for should be in the directory
JOOMLA/administrator/components/com_creativecontactform/views/submissions
Upate: You should not change the original files. If you like to change the output you have do create an override. See section Component Output Types and Layout Overrides in the Joomla documentation Understanding Output Overrides.
I have created a dynamic page in DNN. So I want to know that from where can I find this page in code side when I close my running application.
For example I have created a module which I can find under DesktopModule.
DNN does not create a file on the disk for each page if that is what you are looking for. All the data for a page is in the database in the Tabs and related tables.
i need to remove sitemap.aspx from the site.
In dnn 6,there is a sitemap.aspx page that simply shows an xml sitemap.i cannot edit/remove that file.so i need to remove that page and recreate it with a simple html sitemap.
NOTE:the page name should be sitemap.aspx
Sitemap.aspx isn't a physical page you can delete.
You can, however, rename it to something else. It's in your web.config file, under the 'handlers' section. Just look for sitemap.aspx, and change it to something else, like 'searchenginesitemap.aspx'. Don't forget to update your robots.txt file to point to the new sitemap name, or go to the various webmaster console pages in search engines and advise them of the new location.
The sitemap.aspx is used to create the xml sitemap for search engines. By changing this you break this functionality and limit the search-ability of your site.
That being said, in Host Settings->Advance Settings you could setup a new Friendly Url that would match .*/sitemap.aspx to another url/page on your site.
I have long stopped using DNN's native sitemap.aspx... ITS BUGGY!... and here is how i found out.
I generated my own "CLEAN" sitemap.xml using a free 3rd party tool. And uploaded it to the root of my DNN website.... re-submitted the the domainname.com/sitemap.xml to Google via web master tools and as a result we now get a 1ST PAGE and TOP 10 RANKING.
Mostly in the top 5... where as before using DNN's native sitemap.aspx we would get random errors which was pretty ANNOYING. Plus we got very bad Google Page Rank, But those were just my findings of better results. Note:I also place the location of the sitemap within the robots.txt file...
Although i will admit that it is extremely ANNOYING that you cannot just edit the DNN Sitemap url. This creates an issue if you've built the the site on a test server and then migrate over to production... your DNN Sitemap url only reads the firs portal alias from when you first developed the site.
Anyway, this was my findings... others may vary... just sharing.
When you create a Silverlight Business Application you get a Silverlight application and a Web application. In the Web/Resources folder of the Silverlight app there are links to the files in the Resources folder of the Web app. These links are exactly like the files they link to in that they are heirarchical with the Resource.Designer.cs file shown as a code-behind file for the Resource.resx file
When I try to link to a Resource file in this way I only get the .resx file unless I link to the .Designer.cs file separately. However in this case the Designer.cs file is then shown as a standard code file and not related to the .resx file.
Does anyone know how to do this linking correctly?
After you add a link to new resource file without *.Designer.cs, set its property "Custom Tool" ("PublicResXFileCodeGenerator").