<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[mdAdminApp]]></title><description><![CDATA[<p dir="auto">So I have moved everything from the MyAdminApp to the mdAdminApp</p>
<p dir="auto">Can I make a second instance of the mdAdminApp so I can load it on a different URL.</p>
<p dir="auto">example.</p>
<p dir="auto"><a href="http://summaes.com" rel="nofollow ugc">summaes.com</a> = mdAdminApp instance 1</p>
<p dir="auto"><a href="http://summaes.com/beta" rel="nofollow ugc">summaes.com/beta</a> = mdAdminApp instance2</p>
<p dir="auto">will this affect the user login functions.</p>
]]></description><link>https://forum.mango-os.com/topic/2569/mdadminapp</link><generator>RSS for Node</generator><lastBuildDate>Wed, 15 Apr 2026 22:45:55 GMT</lastBuildDate><atom:link href="https://forum.mango-os.com/topic/2569.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 30 Nov 2016 00:07:17 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to mdAdminApp on Thu, 05 Jan 2017 16:50:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/atkins.chrisw" aria-label="Profile: atkins.chrisw">@<bdi>atkins.chrisw</bdi></a><br />
You can always create a page and set the permissions on it so your users dont see it.</p>
<p dir="auto">You are going to have to elaborate more about the errors you are getting for us to help you. For starters when and where it happens and your console output. The login issue in particular is strange, as a 403 means that you are not logged in, perhaps record your screen as this occurs with the console open so I can see exactly what is happening here, you could post it to YouTube.</p>
]]></description><link>https://forum.mango-os.com/post/13638</link><guid isPermaLink="true">https://forum.mango-os.com/post/13638</guid><dc:creator><![CDATA[Jared Wiltshire]]></dc:creator><pubDate>Thu, 05 Jan 2017 16:50:38 GMT</pubDate></item><item><title><![CDATA[Reply to mdAdminApp on Wed, 04 Jan 2017 18:25:41 GMT]]></title><description><![CDATA[<p dir="auto">Yeah.  I don't want to do that.  I am just trying to make an environment where I can try new things without disturbing our customers.</p>
<p dir="auto">For some reason lately, when I log in.  I get a Error 403 Forbidden</p>
<p dir="auto">HTTP ERROR 403</p>
<p dir="auto">Problem accessing /modules/dashboards/web/. Reason:</p>
<pre><code>Forbidden
</code></pre>
<p dir="auto">I am wondering if I referenced something wrong in my app.js.</p>
<p dir="auto">Also, I am still getting a user error.  I can't add or edit my users now.</p>
]]></description><link>https://forum.mango-os.com/post/13609</link><guid isPermaLink="true">https://forum.mango-os.com/post/13609</guid><dc:creator><![CDATA[atkins.chrisw]]></dc:creator><pubDate>Wed, 04 Jan 2017 18:25:41 GMT</pubDate></item><item><title><![CDATA[Reply to mdAdminApp on Wed, 30 Nov 2016 17:47:31 GMT]]></title><description><![CDATA[<p dir="auto">You can certainly copy the mdAdmin app folder and try it. It's worth noting that if you do this you are creating your own custom app and you are entirely responsible for all upgrades to it in the future and we wont be able to provide much support.</p>
<p dir="auto">If you want to try it here are some details. You will need to change the local storage prefix on at least one of the apps for the auto logins to work independently.</p>
<p dir="auto"><strong>At the start of app.js:</strong></p>
<pre><code>var mdCopyBootstrap = angular.module('mdCopyBootstrap', ['maServices']);
mdCopyBootstrap.config(['localStorageServiceProvider', function(localStorageServiceProvider) {
    localStorageServiceProvider.setPrefix('betaApplication');
}]);

var mdAdminApp = angular.module('mdAdminApp', [
    'oc.lazyLoad',
    'ui.router',
    'ui.sortable',
    'angular-loading-bar',
    'maMaterialDashboards',
    'maAppComponents',
    'ngMessages',
    'mdCopyBootstrap' // &lt;-- add this
]);

</code></pre>
<p dir="auto"><strong>Toward the end of app.js, change <code>maServices</code> to <code>mdCopyBootstrap</code></strong></p>
<pre><code>var servicesInjector = angular.injector(['mdCopyBootstrap'], true);
</code></pre>
<p dir="auto"><strong>In order to get independent pages and menus you will also need to change these constants at the top</strong></p>
<pre><code>    .constant('CUSTOM_USER_MENU_XID', 'beta-app-custom-user-menu')
    .constant('CUSTOM_USER_PAGES_XID', 'beta-app-custom-user-pages')
</code></pre>
<p dir="auto"><strong>And change this reference at the bottom</strong></p>
<pre><code>    var userMenuPromise = JsonStore.get({xid: 'beta-app-custom-user-menu'}).$promise.then(null, angular.noop);
</code></pre>
]]></description><link>https://forum.mango-os.com/post/13385</link><guid isPermaLink="true">https://forum.mango-os.com/post/13385</guid><dc:creator><![CDATA[Jared Wiltshire]]></dc:creator><pubDate>Wed, 30 Nov 2016 17:47:31 GMT</pubDate></item></channel></rss>