content-management

How does Concrete5 arrange it's absolute paths?

隐身守侯 提交于 2020-01-16 05:38:06
问题 I've been asked to figure out how the Concrete5 system works for an employer, and I can't figure something out. I have Concrete5 installed to a directory on the server called /realprofessionals . When the Concrete5 system makes new pages, it gives them their own absolute paths, for instance: http://www.wmcpartners.com/realprofessionals/footer However, it hasn't actually made a folder in the /realprofessionals directory called footer . So how does that work? How can http://www.wmcpartners.com

Web application integration with Drupal

久未见 提交于 2020-01-14 09:59:27
问题 We want to build a web application, that is specific to our domain, but also include forums, blogs etc in this application. Some integration points to Twitter and Facebook are also required. There will also be a desktop application that connects to our web application for uploading data and downloading configuration and reports. The question is, can we extend Drupal to host both the regular modules and our web application? (There will be business entities and their properties and daily data

Web application integration with Drupal

你。 提交于 2020-01-14 09:59:08
问题 We want to build a web application, that is specific to our domain, but also include forums, blogs etc in this application. Some integration points to Twitter and Facebook are also required. There will also be a desktop application that connects to our web application for uploading data and downloading configuration and reports. The question is, can we extend Drupal to host both the regular modules and our web application? (There will be business entities and their properties and daily data

A good tool for building admin / content management interface over MongoDB? [closed]

Deadly 提交于 2020-01-14 06:45:11
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I'm looking for a good tool (or library or a framework) that I could use to easily build basic content management functionalities over MongoDB. I am very well aware of the Admin UIs listed in Mongo's website, and I'm already using RockMongo for query and some db admin tasks. The problem is that while I as a

What is the most performance effective way to create a sitemap.xml for any CMS system?

天大地大妈咪最大 提交于 2020-01-12 08:49:51
问题 We want to implement a sitemap.xml feature in out CMS system. There is some argument within our developers that this feature will impact performance due to each time a change is done in the Content a full list of links of the site needs to be created and placed in the sitemap.xml. The idea is that each time a public viewing page is edited or added it is immediately added to the sitemap.xml making it up to date with the site. While you are answering, and if you have time, what other CMS system

What is the most performance effective way to create a sitemap.xml for any CMS system?

非 Y 不嫁゛ 提交于 2020-01-12 08:49:08
问题 We want to implement a sitemap.xml feature in out CMS system. There is some argument within our developers that this feature will impact performance due to each time a change is done in the Content a full list of links of the site needs to be created and placed in the sitemap.xml. The idea is that each time a public viewing page is edited or added it is immediately added to the sitemap.xml making it up to date with the site. While you are answering, and if you have time, what other CMS system

How to get a list of the assets in the WP7 Content Project?

放肆的年华 提交于 2019-12-23 15:35:35
问题 I can load a textures with: Texture2D texture = ContentManager.Load<Texture2D>(assetName); But this throws an exception if the file doesn't exist. Is there a way to determine if a requested asset of a given name actually exists first? I'm storing a series of assets using suffixed number counters (art001.png, art002.png, ...) and would like to have a simple call preload the textures by just counting through them. 回答1: It is not possible to iterate through the contents of your XAP file. You'll

Content Management - ASP.NET Recommendations [closed]

China☆狼群 提交于 2019-12-18 12:44:40
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . Build vs. Buy... We've all been down this road... It seems like content management solutions need to be a tool that you keep inside the toolbox for some quick wins and they are only getting better. I could certainly look at building one, but by the time you get all the bells and whistles in there, it would have

Edit in Place CMS Suggestions [closed]

半城伤御伤魂 提交于 2019-12-18 08:59:14
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . I need to find a [very] easy to use (for editors/authors) CMS. Preferably with edit-in-place editing similar to SiteCore. We don't need something as huge and powerful as SiteCore though. Users need the ability to add pages (using set templates that we in development have provided), they also need the ability to

XNA How does the ContentManager handle with memory

瘦欲@ 提交于 2019-12-17 16:52:55
问题 My question is not clear at title [i can not write it exactly] e.g Texture2D picture = Content.Load<Texture2D>("myPicture"); what does happen on memory if the code above runs ? As I know Content caches the "myPicture" to the memory and return a reference to the Texture2D picture. Am I wrong ? If "myPicture" is loaded to another Texture2D object "myPicture" is not duplicated so it returns only a reference. Is each file (or content-file) loaded over Content cached to memory (also allocated on