<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">When I add the text field (in this case I added the “About: Open Source” instance) I get a java exception in the opencms.log:<div class="">org.opencms.file.CmsVfsResourceNotFoundException: Error reading resource from path "/sites/default/grid-demo/.content/texts/t_00019.xml”.</div><div class=""><br class=""></div><div class="">I do see the text in my edit window/page:</div><blockquote style="margin: 0 0 0 40px; border: none; padding: 0px;" class=""><div class="">Open Source:</div><div class=""><br class=""></div><div class="">Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua.</div></blockquote><div class=""><br class=""></div><div class="">But, when I refresh the page - the content is missing and it emits the same error message into the opencms.log:</div><div class="">org.opencms.file.CmsVfsResourceNotFoundException: Error reading resource from path "/sites/default/grid-demo/.content/texts/t_00019.xml"</div><div class=""><br class=""></div><div class="">Any thoughts on what is going on here? Does this indicate some kind of mis-configuration of OpenCMS?</div><div class=""><br class=""></div><div class="">-John</div><div class=""><br class=""></div><div class=""><blockquote type="cite" class="">On Feb 15, 2016, at 3:57 PM, Dr. John A. Kassebaum PhD, PE <<a href="mailto:jak@kassebaumengineering.com" class="">jak@kassebaumengineering.com</a>> wrote:<br class=""><br class="">Hi Lorenz,<br class=""><br class="">I found the opencms.log file - very helpful. Not seeing many errors yet - but I just reloaded the whole thing (9.5.3) to be sure I see everything. <br class=""><br class="">The guts of the page are very simple - basically just copied the grid-demo-page.jsp.  Maybe that’s the problem? <br class=""><br class=""><body><br class=""><div class="page-wrap wrapper"><br class="">   <c:if test="${cms.isEditMode}"><br class="">       <!--=== Placeholder for OpenCms toolbar in edit mode ===--><br class="">       <div style="background: lightgray; height: 35px">&nbsp;</div><br class="">   </c:if><br class="">   <div style="background: blue; height: 35px">&nbsp; <br class="">       <img align="right" height="100" src="<cms:link>%(link.weak:/system/modules/com.k2ee.wpcp_framework/resources/img/FortWayneLogo.jpg)</cms:link>" /><br class="">   </div><br class="">       <cms:container name="page-complete" type="page" width="1200" maxElements="15" editableby="ROLE.DEVELOPER"><br class="">       <cms:bundle basename="com.alkacon.bootstrap.formatters.messages"><br class="">           <div class="servive-block rounded-3x servive-block-red"><br class="">                <p><fmt:message key="bootstrap.page.text.emptycontainer"/></p>           <br class="">           </div><br class="">       </cms:bundle><br class="">   </cms:container><br class=""></div><!--/page-wrap--><br class=""></body><br class=""><br class="">This gives me a “Please drop your Layout Rows here” where I can drop a grid-demo template row. I’m about to try this again while watching the opencms.log and see if I learn anything.  I think I do understand the basic idea of content types and formatters … but I can’t get the basic editing functions to work on my own page which makes me think I have missed something critical. <br class=""><br class="">Thanks for your help!!<br class="">-John<br class=""><br class=""><blockquote type="cite" class="">On Feb 15, 2016, at 3:50 PM, Lorenz Lammersdorf <<a href="mailto:lorenz.lammersdorf@kernbrand.ch" class="">lorenz.lammersdorf@kernbrand.ch</a>> wrote:<br class=""><br class="">sorry, typo: it's of course opencms.log.<br class=""><br class="">just to make sure: you've configured your basicpage.jsp as template in<br class="">your site's configuration and then created a new container page (e. g.<br class="">index.html) in your site's folder?<br class=""><br class="">sounds as if your formatter creates no output. is there any<br class="">formatter-related html code in your edited page, e. g. the content of<br class="">your text box?<br class="">i never used the demo bootstrap template, but usually a formatter<br class="">checks if there's content in the added module, e. g. the textbox,<br class="">something like this:<br class=""><br class=""><c:if test="${content.value.RoBeContactLink.exists}"><br class="">              <c:forEach var="item"<br class="">items="${content.valueList.RoBeContactLink}" varStatus="status"><br class="">              <p><br class="">                  <a<br class="">href="<cms:link>${item.value.RoBeLinkLink}</cms:link>"><button<br class="">class="RoBeContactButton">${item.value.RoBeLinkText}</button></a><br class="">              </p><br class="">              </c:forEach><br class=""></c:if><br class=""><br class="">if in this example "item" is empty no output is written.<br class=""><br class="">regards<br class="">lorenz<br class=""><br class=""><br class=""><br class=""><br class="">2016-02-15 21:27 GMT+01:00 Dr. John A. Kassebaum PhD, PE<br class=""><<a href="mailto:jak@kassebaumengineering.com" class="">jak@kassebaumengineering.com</a>>:<br class=""><blockquote type="cite" class="">Hi Lorenz,<br class=""><br class="">I am actually merely trying to get an initial setup running - so I was trying to create a basicPage.jsp that was based on the grid-demo-page.jsp from the bootstrap formatters module. Then - editing - I try to add bootstrap content types to the page. I add a Template Row, then I add a Layout Column, then back to default  and add a text box. The page info show the XML content to be present. but then, when I view the page from another tab - or refresh the tab I’m editing in - the 'page info’ xml content remains the same, but the newly added text box vanishes from the rendered page.<br class=""><br class="">I’m sure I must be dong something wrong - but I have not yet gotten far enough to create my own content types. That is next.<br class=""><br class="">Thanks and best regards,<br class="">-John<br class=""><br class="">P.S. Thanks for aiming me at /webapps/opencms/WEB-INF/logs/oipencms.log - I’ll take a look!<br class=""><br class=""><blockquote type="cite" class="">On Feb 15, 2016, at 3:14 PM, Lorenz Lammersdorf <<a href="mailto:lorenz.lammersdorf@kernbrand.ch" class="">lorenz.lammersdorf@kernbrand.ch</a>> wrote:<br class=""><br class="">john,<br class=""><br class="">did i understand you correct: you're using a self-written template?<br class="">could you please show us your container definition? and which content<br class="">type do you want to add?<br class=""><br class="">btw: catalina.out is only one place to look. have a look at<br class="">/webapps/opencms/WEB-INF/logs/oipencms.log to find the errors thrown<br class="">by opencms. or have a look at administration -> workplace tools -> log<br class="">file to see the last 50 lines (or so) of opencms.log.<br class=""><br class="">regards<br class="">lorenz<br class=""><br class="">2016-02-15 20:18 GMT+01:00 Dr. John A. Kassebaum PhD, PE<br class=""><<a href="mailto:jak@kassebaumengineering.com" class="">jak@kassebaumengineering.com</a>>:<br class=""><blockquote type="cite" class="">Hi Chris!<br class=""><br class="">Thanks for the idea - I tried this during number of operations (startup, shutdown, and just running OpenCMS - editing, etc.) - and I see no error messages. I was viewing “catalina.out for Tomcat which appears to be where OpenCMS emits its log info.<br class=""><br class="">Still unable to edit content … its like the formatter for all content types is “disintigrator booth”.<br class=""><br class="">-John<br class=""><br class=""><blockquote type="cite" class="">On Feb 13, 2016, at 8:01 AM, Christoph Kukulies <<a href="mailto:kuku@physik.rwth-aachen.de" class="">kuku@physik.rwth-aachen.de</a>> wrote:<br class=""><br class="">Am 12.02.2016 um 20:58 schrieb Dr. John A. Kassebaum PhD, PE:<br class=""><blockquote type="cite" class=""><br class="">Hi OpenCMS folks,<br class=""><br class="">I am an OpenCMS newbie, but have had little trouble getting everything setup and working. No problem with the demo site or development tools (Netbeans and nbDriva). However, I am concerned that I am missing something significant.<br class=""><br class="">Problem: I have created a new website for my client using the Workspace Manager, and coded a simplistic new module with my own templates/basicPage.jsp.  I am able to add content to it - but, if I refresh the page after adding content, all of that newly added content becomes invisible. I can still see the record of the info in the Page Info (xml content) - but the produced page HTML does not include rendering of the content. I have not created any of my own formatters and/or content types, and am using the content type from the bootstrap modules as a starting point.<br class=""><br class="">Can someone give me a clue? What I am I missing?<br class=""><br class=""></blockquote><br class=""><br class="">Sometimes it can be helpful to watch opencms.log when the servlet container(tomcat) and OpenCms start and examine the log for any xml errors, exceptions, etc..<br class=""><br class=""><br class=""><br class="">--<br class="">Chris Christoph P. U. Kukulies kukulies (at) <a href="http://rwth-aachen.de" class="">rwth-aachen.de</a><br class="">_______________________________________________<br class="">This mail is sent to you from the opencms-dev mailing list<br class="">To change your list options, or to unsubscribe from the list, please visit<br class=""><a href="http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev" class="">http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev</a><br class=""></blockquote><br class=""><br class=""><br class="">--<br class="">John A. Kassebaum, PhD PE AC9JX<br class="">Kassebaum Engineering LLC<br class="">Main: (317) 225-4126 x2<br class="">Cell: (317) 250-7932<br class=""><br class="">_______________________________________________<br class="">This mail is sent to you from the opencms-dev mailing list<br class="">To change your list options, or to unsubscribe from the list, please visit<br class=""><a href="http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev" class="">http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev</a><br class=""><br class=""><br class=""><br class=""></blockquote><br class=""><br class=""><br class="">--<br class="">Kernbrand ist umgezogen. Bitte beachten Sie die neuen Koordinaten.<br class="">--<br class="">Aktuell im Blog Mensch Marke: Besser bloggen statt werben<br class="">Unseren Newsletter abonnieren<br class="">--<br class="">Lorenz Lammersdorf<br class="">Senior Web Developer<br class=""><br class="">Kernbrand AG<br class="">Teufener Strasse 11<br class="">9000 St.Gallen<br class="">+41 58 255 13 06 direkt<br class="">+41 58 255 13 00<br class=""><a href="http://www.kernbrand.ch" class="">www.kernbrand.ch</a><br class="">--<br class="">Support kontaktieren: support@kernbrand.ch<br class="">--<br class="">Verbinden Sie sich jetzt mit uns! Wir freuen uns auf Sie.<br class="">_______________________________________________<br class="">This mail is sent to you from the opencms-dev mailing list<br class="">To change your list options, or to unsubscribe from the list, please visit<br class="">http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev<br class=""><br class=""><br class=""><br class=""></blockquote><br class=""><br class=""><br class="">--<br class="">John A. Kassebaum, PhD PE AC9JX<br class="">Kassebaum Engineering LLC<br class="">Main: (317) 225-4126 x2<br class="">Cell: (317) 250-7932<br class=""><br class="">_______________________________________________<br class="">This mail is sent to you from the opencms-dev mailing list<br class="">To change your list options, or to unsubscribe from the list, please visit<br class=""><a href="http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev" class="">http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev</a><br class=""><br class=""><br class=""><br class=""></blockquote><br class=""><br class=""><br class="">-- <br class="">Kernbrand ist umgezogen. Bitte beachten Sie die neuen Koordinaten.<br class="">--<br class="">Aktuell im Blog Mensch Marke: Besser bloggen statt werben<br class="">Unseren Newsletter abonnieren<br class="">--<br class="">Lorenz Lammersdorf<br class="">Senior Web Developer<br class=""><br class="">Kernbrand AG<br class="">Teufener Strasse 11<br class="">9000 St.Gallen<br class="">+41 58 255 13 06 direkt<br class="">+41 58 255 13 00<br class=""><a href="http://www.kernbrand.ch" class="">www.kernbrand.ch</a><br class="">--<br class="">Support kontaktieren: support@kernbrand.ch<br class="">--<br class="">Verbinden Sie sich jetzt mit uns! Wir freuen uns auf Sie.<br class=""></blockquote><br class=""><br class=""><br class="">--<br class="">John A. Kassebaum, PhD PE AC9JX<br class="">Kassebaum Engineering LLC<br class="">Main: (317) 225-4126 x2<br class="">Cell: (317) 250-7932<br class=""><br class=""></blockquote><br class=""></div><br class=""><br class=""><div class="">
<div style="color: rgb(0, 0, 0); letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div style="color: rgb(0, 0, 0); letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div style="color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div style="color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div style="color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div style="font-size: 12px; margin: 0px;" class=""><font face="Helvetica" size="2" style="font-size: 10px;" class="">--</font></div><div style="font-size: 12px; margin: 0px;" class=""><font face="Helvetica" size="2" style="font-size: 10px;" class="">John A. Kassebaum, PhD PE AC9JX</font></div><div style="font-size: 12px; margin: 0px;" class=""><font face="Helvetica" size="2" style="font-size: 10px;" class="">Kassebaum Engineering LLC</font></div><div style="margin: 0px;" class=""><font size="1" class="">Main: (317) 225-4126 x2</font></div><div style="font-size: 12px; margin: 0px;" class=""><span class="Apple-style-span" style="font-size: 10px;">Cell: (317) 250-7932</span></div></div></div></div></div></div>
</div>
<br class=""></body></html>