content-management-system

What is the “best” free CMS for my needs? [closed]

元气小坏坏 提交于 2019-12-30 03:31:08
问题 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 3 years ago . I have the task to build a web-site for a smaller non-profit organization. I have a bit experience with ASP.NET but because ASP.NET hosting is rather expensive here in germany (we will also need a lot of webspace and traffic) and aslo because there are quite a hughe list of features I think I should go with a

Working with version control on a Drupal/CMS project

梦想与她 提交于 2019-12-29 18:45:13
问题 I was wondering how teams that develop sites using Drupal (or any other CMS) integrate version control, subversion, git or similar, into their workflow. You'd obviously want your custom code and theme files under version control but when you use a CMS such as Drupal a lot of the work consists of configuring modules and settings all of which is stored in the database. So when you are a team of developers, how do you collaborate on a project like this? Dumping the database into a file and

Force Download Only Displays in Browser, Doesn't Prompt for Download

情到浓时终转凉″ 提交于 2019-12-29 08:07:18
问题 I can't seem to figure this out and I know it's something simple. I am building the back-end to a very basic content management system. For this specific piece, I am just trying to create a PHP link that allows for a file (the client's CV) to be downloaded. MY PROBLEM: When the link to download the file is clicked, instead of the browser prompting you to choose a local directory to save the file to - it simply displays the file and a bunch of symbols before and after the document's contents

PHP OOP core framework

ぐ巨炮叔叔 提交于 2019-12-27 11:00:10
问题 I am just posting this question so some of you might be able to point me in the right way. I am slowly warming up to OOP, starting to understand the concept. I want to make a good solid core or foundation to be used as a CMS backend. It will also use MVC. I have been using http://gilbitron.github.com/PIP/ as the MVC- base. The thing I cant figure out is the following: Say, on the projectpage in the backend I have 2 sections: htmltext and projects and I should be able to edit them both. The

Contentful CMS - getting image

旧城冷巷雨未停 提交于 2019-12-25 18:41:20
问题 How can I get each image for each entries. I have two array. items and includes ex: items.fields.name = Mark How can I get the image associated to Mark? 回答1: If you are using the HTTP REST API directly, you'll need to do the mappings yourself. For example, if you have an image in items[0].fields.image, that will contain an object with a sys property, with details about the kind of entity that is linked (asset or entry) and the id. Then you'll need to look for that in the includes array and

Replacing sitecore layout in parent and child items

怎甘沉沦 提交于 2019-12-25 16:27:13
问题 I am creating a new footer sublayout in sitecore for use in multiple sites (we run a multi site environment). Currently a sublayout called StandardLayout is used, but I would like to change this across several of our sites to a new layout GlobalFooter. The problem is that child items of the Home Page have overridden layout components, so what I would like to know is if there is an easy way to change the layout without losing all of the overridden components (as I expect that I may need to

Silverstripe 3 - Unable to implement controller access security from CMS

﹥>﹥吖頭↗ 提交于 2019-12-25 15:17:09
问题 Good afternoon, I'm still new to silverstripe and I'm trying to figure out some really simple tasks. Currently, I'm trying to implement the security restrictions from my page controller function that was already created within my DataObject and configured via the CMS. However, whether or not I grant the user access to view the object, the user sees it anyhow. See example below: class MyComponent extends DataObject implements PermissionProvider{ ///>... this is just a snippet not the full

Silverstripe 3 - Unable to implement controller access security from CMS

…衆ロ難τιáo~ 提交于 2019-12-25 15:16:21
问题 Good afternoon, I'm still new to silverstripe and I'm trying to figure out some really simple tasks. Currently, I'm trying to implement the security restrictions from my page controller function that was already created within my DataObject and configured via the CMS. However, whether or not I grant the user access to view the object, the user sees it anyhow. See example below: class MyComponent extends DataObject implements PermissionProvider{ ///>... this is just a snippet not the full

Setting the value of a checkbox based on what is selected in a list

冷暖自知 提交于 2019-12-25 12:44:49
问题 I am working in the confines of a CMS system, which defines certain fields which can be used to make forms for use within the application in PHP. The list function has the signature: function inputBasicList ($id,$value = "",$list = array(), $displayName = NULL, $displayLabel = true) I use it thusly: $theinput = new inputBasicList("type",$therecord["paymenttype"],array("Cash"=>"cash","Credit"=>"credit"), "Payment Type"); Likewise, there is a checkbox, which has the signature: function

Setting the value of a checkbox based on what is selected in a list

依然范特西╮ 提交于 2019-12-25 12:44:06
问题 I am working in the confines of a CMS system, which defines certain fields which can be used to make forms for use within the application in PHP. The list function has the signature: function inputBasicList ($id,$value = "",$list = array(), $displayName = NULL, $displayLabel = true) I use it thusly: $theinput = new inputBasicList("type",$therecord["paymenttype"],array("Cash"=>"cash","Credit"=>"credit"), "Payment Type"); Likewise, there is a checkbox, which has the signature: function