Hi there,
I need to export an XML file grabbing data from CMSMS database (something like a feed...).
I guess that database entries reports template insert string too, so I cannot make a simple read from a recordset, but I should need a method to "decode" template strings.
I'll try to explain that..
Imagine that my page contains something like this: "Lorem ipsum dolor sit amet... {module="mymodule" param="myparam"}"
I need something like this instead: "Lorem ipsum dolor sit amet this is the text produced by mymodule"
Is it possible? Is there any plugin that make this for me?
Last question: is there a way to embed a flash movie/animation into my client-side page?
Thanks a lot!
Exporting XML content from Database
-
- Support Guru
- Posts: 8169
- Joined: Tue Oct 19, 2004 6:44 pm
- Location: Fernie British Columbia, Canada
Re: Exporting XML content from Database
wget -R
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Re: Exporting XML content from Database
I'm not sure I understand your question, but: http://dev.cmsmadesimple.org/projects/lipsum I'll try to explain that..
Imagine that my page contains something like this: "Lorem ipsum dolor sit amet... {module="mymodule" param="myparam"}"
I need something like this instead: "Lorem ipsum dolor sit amet this is the text produced by mymodule"
Is it possible? Is there any plugin that make this for me?

There are several modules in the forge, for example http://dev.cmsmadesimple.org/projects/playLast question: is there a way to embed a flash movie/animation into my client-side page?
You can also use the Media plugin within TinyMCE.
Regards, Rolf
- + - + - + - + - + - + -
LATEST TUTORIAL AT CMS CAN BE SIMPLE:
Migrating Company Directory module to LISE
Migrating Company Directory module to LISE
- + - + - + - + - + - + -
Re: Exporting XML content from Database
Could you explain that, please?calguy1000 wrote: wget -R
Re: Exporting XML content from Database
There is no way to get "decode" template string from the database. The page content saved in the database should be parsed with Smarty to get the HTML output the same way you see it in the browser. However, there are some solutions for getting parsed content from HTML. Please describe the purpose of what you are going to do exactly.sogno wrote: I need to export an XML file grabbing data from CMSMS database (something like a feed...).
I guess that database entries reports template insert string too, so I cannot make a simple read from a recordset, but I should need a method to "decode" template strings.