sql-server,asp.net-mvc,content-management-system,umbraco7
To access the back office of the site, go to http://[YOUR LIVE DOMAIN HERE]/umbraco/. You were asked for a username and password when you set up the Umbraco site, you'll need to use that to access the CMS....
php,html,css,content-management-system,scrollbars
Looking at your code I imagine that one of the three require files is causing it: require($_SERVER['DOCUMENT_ROOT'].'/cgi-bin/siteconfig.php'); require($_SERVER['DOCUMENT_ROOT'].'/cgi-bin/cms.php'); require($_SERVER['DOCUMENT_ROOT'].'/cgi-bin/users.php'); most likely /cgi-bin/cms.php or /cgi-bin/siteconfig.php Try removing each require in-turn in order to find out which file is causing it....
content-management-system,orchardcms,breadcrumbs
change items[items.Count - 1].Classes.Add("last").Itemprop.Add("child"); to items[items.Count - 1].Classes.Add("last"); items[items.Count - 1].Attributes.Add("itemprop", "child"); items[items.Count - 1] - it is Shape class. Classes - it is IList<string> collection classes for shape. Attributes - it is IDictionary<string, string> collection attributes for shape....
import,content-management-system,export,hybris
If you just want to play around and want to test something the "quick-and-dirty"-way you can use the cms cockpit. (not recommended) In our project we use only impex files for cms stuff. The main reasons for this approach are: your pages and components do not get lost when you...
content-management-system,liferay
I am not sure, if this question really belongs here, anyway here are few my points: you have to get the proper Liferay mindset to get things work insufficient developer documentation (they are trying to improve it) a lot of code in JSP files little (if any) support for TDD...
joomla,content-management-system
The reason why is because someone hacked your old version of Joomla. And that's happen because all the time a new version is coming out the bugs and the exploits of the previous version are released. To fix your problem what you have to do is download Joomla 1.6 here...
javascript,php,html,content-management-system
I hope I've got what you need, but I think there are multiple solutions. You could insert some placeholders in your html (not IDs) and replace them using php and insert your content. Another approach is to define section contents in your database, which belong to one page. If the...
content-management-system,workflow,orchardcms
With Orchard you can achieve required functionality through Workflow module. The simplest way, as I see it, would be: Create Content type for your issues. Create custom form that gives you edit and browse funcionalities (can be done other ways too, but I have found custom forms suitable for this...
php,content-management-system,ezpublish
in admin/templates/user/login.tpl
asp.net,visual-studio,content-management-system
The latest version monoX_5_1_40_5150 was just released,and the problem is fixed in this version.So just update project with the latest version.
jquery,html,css,content-management-system
You should iterate each checkList table and create UL. As of now you are iterating the table rows thus you are getting a single unordered list //Iterate each table $("table.checkList").each(function(){ //create ul for each table var ul = $("<ul class='songList'>"); //Iterate on current table $("tr", this).each(function(){ var li = $("<li>")...
video,content-management-system,jcr
Yes this is possible to do. In fact JCR can store binary data including videos,images, documents etc...Then,you will need just to read the content of the binary and stream it in a video reader. You can watch a simple usage on eXo Platform they are using JCR as their storage...
php,content-management-system,domdocument,read-write
DOMDocument only use to read XML and HTML, these have a structure. When you insert PHP code into html file, it is not realy a html anymore. Let see an example below. The html code: <a>text</a> There is a node that named "a" have a content. DOMDocument can understand it...
I was able to fix this by adding a / to the end of the URL.
I solved it with a session! If the session is false the rand function runs and the session is set to true. When the page reloads(submit pressed) the session is true so all the other cod runs. In the end of the code (if session is true) the session is...
tags,content-management-system,orchardcms,meta
The reason this doesn't work is because if you look in ResourceManager.SetMeta there's the following code public void SetMeta(MetaEntry meta) { if (meta == null) { return; } var index = meta.Name ?? meta.HttpEquiv ?? "charset"; _metas[index] = meta; } Therefore your second call to the method is overwriting the...
content-management-system,updates,expressionengine
EE doesn't make it quite as easy as it is in WordPress. You could check out the Lamplighter extension to see what's still in need of an update then download from the respective source. This is getting into opinion a bit but when I did a lot of EE dev,...
content-management-system,orchardcms,orchardcms-1.8,orchard-modules
You have to make an alternate view of the Editor of the field : Modules\Orchard.Fields\Views\EditorTemplates\Fields\Enumeration.Edit.cshtml Copy it with in your theme in the folder EditorTemplates\Fields\Enumeration.Edit.cshtml and change the code to add the css style you want....
content-management-system,adobe,cq5,wcm
I assume you have added the MyLess.less to the css.txt in /etc/designs/MySiteName/ClientLibFolder. The next step would be to ensure the OSGI bundle is running which compiles the less file. For information on where the bundle is located you can refer to this blog post http://www.citytechinc.com/us/en/blog/2012/08/less_css_in_adobecq.html...
Ok, now I understand better. The problem is, that you are still rather fuzzy. Any application do implement specific things. So, when you look for something existing, you have to say what its specifics are. "Control Panel" is still rather fuzzy. I guess, you are looking for a CMS, that...
php,html,xml,magento,content-management-system
Sorry it's been a while since I post this question. I have been in a vacation for the past weeks so I don't have time to visit this page. I already figure out the solution for this kind of problem. Every custom module that a developer will create should register...
php,web,twitter-bootstrap-3,content-management-system
After some research all I found is that the design is from a Bootstrap's theme and not a CMS Not sure if it will help you Here is a link to the theme : https://wrapbootstrap.com/theme/clean-zone-responsive-admin-template-WB00XNXM0...
tags,widget,content-management-system,orchardcms,meta
IResourceManager provides the necessary methods. For use it in view: var resourceManager = WorkContext.Resolve<Orchard.UI.Resources.IResourceManager>(); resourceManager.SetMeta(new Orchard.UI.Resources.MetaEntry { Name = "description", Content = "ABC" }); But it can be also used in other places (e.g. part driver). Edit using SetMeta("description", "ABC") in view give the same results....
php,mysql,seo,content-management-system
You'll need to create a slug to use in your URL. Either you allow the user to enter his slug or you create the slug automatically from the article's title. One thing to keep in mind is that you'll need to make sure the slug is unique. Imagine the title...
php,html,directory,content-management-system,server
I found the true answer here:Apache: Inline PHP not working on Linux [SOLVED] I needed to change all extensions to php not html to get this to work properly....
magento,layout,content-management-system
You may find this question useful to understand CMS page layouts. So while you can’t accomplish what you are trying to do in the way you are going about it exactly, here are a couple of options to consider: Add your layout XML to each of the CMS pages in...
content-management-system,sitecore
First, you should have created your new page from your new template, but for now, you can change the page template by: Select your page in the content tree Go to the tab Configure Go to the chunk template Click to change ...
c#,asp.net,content-management-system,sitefinity
For sitefinty you need to checkin all DLLs in the bin, except for the sitefinitywebapp.dll
Backend on a development level refers to server-side development and the handling of server-side information. Backend is used in reference to the administration dashboard when it relates to the management of that data. For example, a dashboard that allows an admin user to manage the database is called backend because...
javascript,seo,content-management-system,firebase
Webhook only uses Firebase for the CMS. The deployed sites are pre-generated staticly. This means google will be able to crawl it. Since static sites are themselves the fasted way to deliver content, you'll also have that advantage versus a traditional system.
twitter-bootstrap,content-management-system,wagtail
You can do this through image formats: http://docs.wagtail.io/en/v0.8.5/core_components/pages/editing_api.html#image-formats-in-the-rich-text-editor The "Full width" / "Left-aligned" / "Right-aligned" options you usually get when inserting an image into the rich text area come from Format objects, which determine how to translate the image reference into the final tag. So, you need to replace the...
php,xml,content-management-system
What you need to do first is of course, you have to setup a form. You must first predefine a column array which will hold all of your column names to be used in your form. // pre defined columns $columns = array('text' => 'Text', 'posted_at' => 'Posted At', 'messages'...
joomla,content-management-system,database-migration
You have 2 option Start a new installation on the same database and use a different PREFIX on tables (like newjoo_) make a bck folder, move existent folders and file in it, copy new file on the root of your FTP and use the OLD configuration.php file (so you have...
html,css,content-management-system,editor,prestashop-1.6
Mh, you can also try add border style like this: <table style="height: 670px; width: 429px; margin-left: auto; margin-right: auto; border: 5px solid #000000;" width="429"> It should help you....
php,html5,content-management-system,opencart,home
Both of these require you to edit your /catalog/controller/common/home.php and place the code after the public function index() { line, changing 123 to your products id v1.5.x $this->redirect($this->url->link('product/product', 'product_id=123')); v2.x $this->response->redirect($this->url->link('product/product', 'product_id=123')); ...
php,magento,design,web,content-management-system
There are handles in Magento who decide what block to show when specific controller is called. Take a look at this file /magento/app/design/frontend/base/default/layout/catalog.xml and find following lines <catalog_product_view translate="label"> <label>Catalog Product View (Any)</label> <!-- Mage_Catalog --> <reference name="root"> <action method="setTemplate"> <template>page/2columns-right.phtml</template> </action> </reference> <reference name="content"> <block...
php,html,wordpress,website,content-management-system
Basically this depends on how many features of the CMS you want to use with your template. As you already gave the example of WP: You could create an really simple WordPress theme where you just put all your assets (CSS & JS files, images, etc) into a folder in...
wordpress,content-management-system,dynamic-websites
Wix is actually a pretty nice solution. What aspects of it have you found cumbersome? As for the integration of third parties as well as analytics and such - there's a solution for basically anything you'd want. I'm not sure how robust the large websites you mentioned would be, and...
php,html,content-management-system,anchor
You start by checking if the number of comments is greater then 0, but you don't do anything if the number of comments is equal to 0. You'd need an else to your first check for comments, i.e. <?php if (tootsweet_article_total_comments() > 0) { echo '<a href="'.article_url().'#comments">'; if (tootsweet_article_total_comments() ==...
c#,html,model-view-controller,content-management-system,orchardcms
I didn't get any clear idea by your question. But answering by experience. i'll describe to you what I would do to create an alternate for my form: Alternates are added for the whole View, rather than individual html components. You'll create an alternate View for your form. Alternate created...
javascript,html,ajax,wordpress,content-management-system
The design and interactivity alone would take an age. This is no one man project. There are many people with different expertise working on this project. You have to think about the database side as well. The PHP for users to sign up. The graphic designed logos. There are too...
mysql,database,content-management-system,concrete5
I finally solved this problem. I went into MAMP and found the MySQL port number and typed into the server box in this format: localhost:[MySQL Port].
php,html,css,wordpress,content-management-system
Add your scripts in your function.php file, with wp_enqueue_script : http://codex.wordpress.org/Function_Reference/wp_enqueue_script
wordpress,joomla,content-management-system,ecm
i do a similar thing with only two sites (Joomla). Basically i have a server where the articles where stored and two hosted domains. I did it with different techniques on the two sites (just for testing) and both work great for a long time. The first page render the...
wordpress,twitter-bootstrap,content-management-system
The following link will give you all necessary information needed to import Wordpress. http://www.wpbeginner.com/wp-tutorials/how-to-move-wordpress-from-local-server-to-live-site...
drupal,content-management-system
Drupal (assuming that you are talking about version 7 since 8 is still in beta) is pretty powerful CMS, with a lot of (free) modules allowing it to expand it's possibilities. When you are in back-end under Structure -> Content types you can see all available content types defined. There...
jquery,content-management-system,orchardcms,colorbox
Colorbox module? Are you talking about this: http://gallery.orchardproject.net/List/Modules/Orchard.Module.Mod.Colorbox ? Colorbox is now included in Orchards core so you can include it in your view like so: @{ Script.Require("jQueryColorBox").AtFoot(); Style.Require("jQueryColorBox").AtHead(); } Check out the colorbox page for demos of opening youtube videos in colorbox: http://www.jacklmoore.com/colorbox/example1/...
content-management-system,adobe,cq5
Yes , it can be done by adding a cq:template[nt:unstructured] node under your component. If all the data is stored on the component node itself , add the default values as properties to cq:template node with name same as the ones in your dialog. In case the data is stored...
php,codeigniter,content-management-system,translation
You can implement this by using language Class. Step 1 : First create a folder french inside the folder application/language (Here you can see an english floder. Which can be used for english). Step 2 : Then create a file content_lang.php inside application/language/french and application/language/english. Step 3 : Add the...
spring-mvc,content-management-system,liferay-6,drools-guvnor
I think you can develop a Liferay portlet wich manages the Liferay content and a java project with the drools part. If you need to use drools on the cms part, you can import that on your portlet as a jar. Regards....
php,wordpress,content-management-system
I can't help you out with using get_posts. However you may try it with WP_Queryas stated in wordpress' documentation under Display posts that have "all" of these categories: $args = array( 'posts_per_page' => 1, 'category_name=news+featured-post' ); ); $my_query = new WP_Query( $args ); while( $my_query->have_posts() ): $my_query->the_post(); //do things with...
php,apache,joomla,content-management-system
Joomla since version 1.6 has fine grained access control that you can customise your self. Normally what I would do is create a user group for each of your groups. THen create a category tree for that group to make and manage their articles. Then for each of these categories...
content-management-system,umbraco,umbraco7
You can use a Content Repository to hold content objects that won't be pages in your application. Use following steps: Step 1: Create the root content repository document type Go to your backend to the Settings section. Under Document Types create a new type and give it the name Content...
java,java-ee,content-management-system,graph-databases
I can personally encourage you to use neo4j - http://neo4j.com/. It's new, quite simple, easy to use on Java and has quite good documentation. Although be aware of some minor issues (like an application crashing occasionaly when used heavily).
java,java-ee,content-management-system,liferay,liferay-6
Yes, this service is related to the Documents and Media portlet which can be found within Content of a site's Admin area. The source code package structure designates this portlet as the document_library portlet (dated but applicable wiki page). The portlet serves as the management facility for all document based...
css,node.js,heroku,content-management-system,hexo
Ok, I found out what was wrong after some more hours of puzzling and poking around. The problem was inside my _config.yml file. The line root: /public/ This needed to be changed to.... root: / And that was it! I will leave this Question & Answer up just in case...
magento,layout,content-management-system,static-block
<div class="menu_left col-lg-4 col-md-4"> <?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('menu_about')->toHtml(); ?> </div> ...
php,html,wordpress,content-management-system,wordpress-theming
<?php //get id of your current page $post_id = $post[0]->ID; $pages = get_pages(); foreach ( $pages as $page ) { $current = $post_id == $page->ID ? ' current' : ''; $linkPage = '<a class="order '.$current.'" href="' . get_page_link( $page->ID ) . '">'; $linkPage .= $page->post_title; $linkPage .= '</a>'; echo $linkPage;...
django,content-management-system,django-cms,django-1.5,django-1.7
A maybe oversimplified solution for this could be django-front. Create your static pages and add the fields you want to edit. You edit it with a wysiwyg editor. I use it for my terms of service/privacy policy. You will probably be always bothered by migrations and django version when using...
image,get,content-management-system,typo3,typoscript
Maybe I don't understood correctly, but... you don't need to write it yourself, just in your main TS template include CSS Styled Content from extension, so you can render whole column like: page.20 < styles.content.get If you need to change some wrappings (i.e.: to add your news CSS classes) you...
content-management-system,orchardcms,orchardcms-1.8,orchard-modules
This functionality is not supported out of the box but there is a module on the gallery that offers it: Role Layer Rule...
php,.htaccess,mod-rewrite,content-management-system
Changing the foo/bar/about/site/etc.html to index.php?q=foo-bar-about-site-etc is much more difficult with mod_rewrite than it is with PHP. Just do this in php, get the $_GET['q'] variable and explode the string into an array or something using the / flags. It's also better this way because you'll know for sure that the...
razor,content-management-system,composite-c1
You're doing it wrong and treat Razor like its nothing but a StringBuilder though its much smarter than that. Especially in this case, you should use Conditional Attributes The correct code is NOT to use Html.Raw, but to set your attribute-value to null if you don't want it to be...
xpath,content-management-system,sitecore
You can check if the value of __Source field is empty. In this field Sitecore stores information about the original item for cloned items, so this field will be not empty for all the cloned items and they will be omitted in the results: query:/sitecore/content/mysite/Home//*[@@templatename='MytemplateName' and @__source=''] ...
php,laravel,content-management-system
I kinda had the same trouble months ago, and I ended up choosing the framework option. After months developing and using Wordpress-based solutions for my clients I noticed that the start up of every single project was very fast (easy to install, lots of materials available for free or cheap)...
magento,content-management-system
I ended up using a combination of zokibtmkd answer and adding fields to the default static blocks (a image upload function and a link field). The combination of these two solutions gave me enough to work with in the design without messing up the admin or the templates.
c#,.net,content-management-system,kentico
Adding control dynamically is done as follows: // Let's assume that 'plc' is a placeholder. But it can be any control. plc.Controls.Add(new LiteralControl("<li class=\"htab-list__item--fininfo active\">")); plc.Controls.Add(new LiteralControl("<a href=\"#financial-result\" class=\"htab-list__link tab-link\">")); plc.Controls.Add(new CMSEditableRegion { ID = "someid", RegionType = CMSEditableRegionTypeEnum.TextBox, RegionTitle = "sometitle" }); plc.Controls.Add(new LiteralControl("</li>")); Also check out MSDN....
wordpress,content-management-system,google-tag-manager,staging
AFAIK it is recommended to have separate Tags (with the new export/import-feature it's easy to transfer configurations between two containers, or you write an API script to do it). Having said that it is possible to run scripts only on the staging site - the hostname differs between staging and...
javascript,html,css,content-management-system
It's really ugly, but i think it will do what you want : <!DOCTYPE html> <html> <head> <title>Test</title> </head> <body> <head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script> </head> <script type="text/javascript"> function addZero(number){ var zeros; switch(number.toString().length) { case 1: zeros= "0000"; break; case 2: zeros= "000"; break; case 3: zeros= "00"; break; case 4: zeros=...
asp.net,url,content-management-system,sitefinity
Unsure what you mean, but if you are trying to reference a url in a different directory use the following: div { background-image: url('../Images/example.jpg'); ...instead of: div { background-image: url('/Images/example.jpg'); ...
drupal,plugins,content-management-system,themes,drupal-modules
Themes are (usually) only styling front-end of your site. Drupal by default (must) have users system login/registration form and all other functionality related to users. When you activate your new theme logout and go to page "/user" to see your loging form. There are also "/user/register", "/user/password" and some other...
javascript,jquery,html,content-management-system,wysiwyg
ContentEditable is your answer. This will allow the user to change the dom and when he submits it will store to the database. But if you need styling and the admin is not a coder, I suggest you go with a editor like tinymce. <div contenteditable="true"></div> ...
content-management-system,pligg
To change the word "New" you should: Login to your Admin CP. Expand the Modules menu. Click Modify Language. In the Filter Text box type New. There are quite a few you need to change if you want your new word shown everywhere. These are the values I have changed:...
java,design-patterns,notifications,content-management-system
Sounds like a clear cut case for the Observer Pattern, whereby Newspaper and Document will be Subjects and your Notifications will be Observers. If would not refrain from using Enums, since they are ideal to distinguish between types of notifications as well as document actions. I can't see how they...
html,css,content-management-system,html-lists
OK, you when doing menu-like code, you are going to have styles that override each other (multiple nested UL, LI and A). It's good practice to include the ">" element in your style sheets, which limits the scope of your query to direct children. I have edited your code a...
php,drupal,content-management-system,upgrade
Yes, you do need to update your current Drupal version before performing a major upgrade. Before attempting this upgrade, you should probably give this page a good look-see, as it has lots of information that you'll need to know. https://www.drupal.org/upgrade On that page it will also point you in the...
javascript,html,css,content-management-system,web-site-project
Not Exactly. most CMS are designed with MVC architecture (or with no architecture at all). Drupal is designed with PAC architecture. I actually prefer the latter. What you should have done was designing your website on top of Drupal (or any other CMS). Not all hope is lost yet :)...
content-management-system,composite-c1
Unfortunately there was an issue in this version of Composite C1. This issue will be fixed in the upcoming version 4.3 (release candidate now). For the time being, a patch has been made to handle this bug. You can install it from the C1 Console: System / Packages / Available...
content-management-system,bigcommerce
No, it is not possible to add another store to a subdirectory. You can add another Bigcommerce store to a subdomain however. You could set up http://yourstore.com (live store) and http://dev.yourstore.com (development store)....
content-management-system,composite-c1
Is there a doc explaining how to copy the content to a newly downloaded copy You can try and export content / templates / anything else related to a "package" via Composite.Tools.PackageCreator. Its latest version gives you quite a lot of flexibility in what you can export ("package") -...
javascript,html,css,wordpress,content-management-system
the keyword in case of automatically fetching data from any other websites is Web Scraping. What is Web Scraping? Web scraping (web harvesting or web data extraction) is a computer >software technique of extracting information from websites. Source & Further Reading: Wikipedia Find Web Scraping you can fetch data from...
content-management-system,uml,use-case
See also: uml-diagrams.org: Relationships Between Actors ...
xml,solr,content-management-system,sitecore,sitecore7
Open the location of Solr core configuration, e.g. C:\solr-4.3.0\example\solr\itembuckets\conf Copy schema.xml file to original-schema.xml Login to Sitecore Desktop Open Control Panel -> Indexing application Select Generate the Solr Schema.xml file For Source File select original-schema.xml from the point 2. For Target File select schema.xml from point 2. Click Generate...
content-management-system,webcenter,oracle-ucm
Sample code is here.. String whereClause = "UPPER(XCOMMENTS) LIKE '%VALUE%'"; dataBinder.putLocal("IdcService", "GET_DATARESULTSET"); dataBinder.putLocal("dataSource", "Documents"); dataBinder.putLocal("whereClause", whereClause); dataBinder.putLocal("resultName", "YourResult"); ServiceResponse response = idcClient.sendRequest(userContext, dataBinder); System.out.println(response.toString()); DataBinder serverBinder = response.getResponseAsBinder(); DataResultSet resultSet = serverBinder.getResultSet("YourResult"); ...
content-management-system,silverstripe
We can use $fields->fieldByName('Root.Main.Metadata') to retrieve the current Metadata field so that we can place it back in. Try the following: function getCMSFields() { $fields = parent::getCMSFields(); if ($metadataField = $fields->fieldByName('Root.Main.Metadata')) { $fields->removeFieldFromTab('Root.Main', 'Metadata'); $fields->addFieldToTab('Root.Main', $metadataField, 'Content'); } return $fields; } ...
drupal,content-management-system,drupal-6
Strict warnings can be always turned of in your php.ini/.htaccess/settings.php so it is not a problem http://drupal.org/node/465332#comment-1600034 explains some reasons why we can't fix it....
html,asp.net-mvc,razor,content-management-system,razorengine
Another way would be to use IEncodedString (https://github.com/Antaris/RazorEngine/blob/master/src/source/RazorEngine.Core/Text/IEncodedString.cs) instead of IHtmlString by creating a RawString (https://github.com/Antaris/RazorEngine/blob/master/src/source/RazorEngine.Core/Text/RawString.cs) instance. @Raw does exactly that behind the scenes (https://github.com/Antaris/RazorEngine/blob/master/src/source/RazorEngine.Core/Templating/TemplateBase.cs#L147)....
javascript,content-management-system
Your GET requests are malformed and incomplete. You are not calling the required .send() on the requests, and inside the onreadystatechange handler function you need to use txtFile.responseText, because your txtFile variable is actually the request, not the file itself. But your best and easiest option, since you are using...
content-management-system,dotcms
In the page properties, check the box "show on menu" for both your pages. Then you can use the navigation tool ($navtool) to build your navigation. See this page in the documentation: http://dotcms.com/docs/latest/NavigationTool...
content-management-system,prestashop,prestashop-1.6
This feature is not supported in PrestaShop.
content-management-system,ckeditor
This <a anything</a> is not a valid HTML and CKEditor works only with a valid HTML. So once you try to load this content into CKEditor it (or the browser) tries to fix it. Quoting CKEditor basic concepts: CKEditor is not a tool that will let you input invalid HTML...
php,content-management-system,concrete5
It looks like you're supplying a page type handle instead of an page type ID to ctID. You should be able to do something like so: $sweetPageType = PageType::getByHandle('news'); if(is_object($sweetPageType)) { // let's be extra safe, eh? $sweetPageTypeID = $sweetPageType->getPageTypeID(); } And then, in your hardcoded block (you could test...