Just wondering whether someone might be able to point me to a setting I need to adjust - whenever I load pages I get a browser message saying “App Already Running” - I can’t see anything obvious that would be making this happen (Only been using Wappler for 3 days though…)
I have a navigation file that i was including at the start of every other page and i must have accidentally added appconnect to the navigation file (it was added to the pages too) - it was also stopping my notifications from coming through so that solved 2 problems.
then the content is just moved to the include file and a special comment is generated above - that also contains the used frameworks, so they are not included again.
Getting “app is already running” alert on items-category.htm . It is an older server connect dmxServerAction.js page (not changed) somehow now conflicting after updated item.htm page successfully to the Wappler way. I am not able to code this page to AppConnect yet as still novice with Wappler. Hopefully I am overlooking something obvious. https://www.chrisdixonstudios.com/artgallery/items-category.htm?id=birds/
I don’t know what you did, but I see multiple nested html in the source code, head is inserted multiple times. The alert is because dmxAppConnect.js is included multiple times.
Patrick, You pointed me in right direction. Actual source code does Not repeat html or head tags. On line 310 where first nested tags appear is supposed to be: #include virtual="{{DescriptInclude}}"
I removed my erroneous includes and it is working! George mentioned something earlier: " Btw if you use SSI files - I suggest creating them “the Wappler way” as described: https://wappler.io/docs/#Server-Side-Includes "
Take his suggestions seriously!
I have the same alert although my files does not have dmxappconnect.js twice.
I have been experimenting with node.js partials and layouts, do you have some idea of how to fix?
Edit: I fixed this by creating a new layout page (with a different name) and compared the header tags to my main.ejs. Seeing they were different i copied and pasted the code over. Somehow the main.ejs had all the header tags from my index.ejs. When I deleted and recreated that file before it would give me the header tags for a content page not a layout page.