Base solution for your next web application

Activities of "darutter0508"

Answer

I followed the document and ensured I am using the correct application pool. Again, if I publish it to the "Default Web Site" in IIS then the site will come up, but because the routing to the resources is now incorrect they can't be found. I have the issue on 2 different servers publishing the site to the root. We have checked permissions, app pool settings, etc. with no success.

These changes are in the AspNetZero base code. Will they be in the latest versions in NuGet?

I am still not able to get the side menu to scroll if I change the menu style to Fixed. Please go to http://sapphiresub.azurewebsites.net/Sapphire to see the site. Change tenant to Penmac_Springfield if it isn't already set and login using [email protected] / Sch00lSub5.

Found the issue.

As I mentioned, adding a root node works, but the child nodes fail.

This is the out of the box _CreateModal.js file. It appears to be failing when it executes this javascript. The CreateOrganizationUnit method of the OrganizationUnitAppService never gets hit.

(function() { app.modals.CreateOrganizationUnitModal = function () {

    var _modalManager;
    var _organizationUnitService = abp.services.app.organizationUnit;
    var _$form = null;

    this.init = function(modalManager) {
        _modalManager = modalManager;

        _$form = _modalManager.getModal().find('form[name=OrganizationUnitForm]');
        _$form.validate({ ignore: "" });
    };

    this.save = function() {
        if (!_$form.valid()) {
            return;
        }

        var organizationUnit = _$form.serializeFormToObject();

        _modalManager.setBusy(true);
        _organizationUnitService.createOrganizationUnit(
            organizationUnit
        ).done(function(result) {
            abp.notify.info(app.localize('SavedSuccessfully'));
            _modalManager.setResult(result);
            _modalManager.close();
        }).always(function() {
            _modalManager.setBusy(false);
        });
    };
};

})();

I am using .Net Core with jQuery version 8.3.0

I've searched the forum and this discussion board and haven't found any examples of how to use the CustomData property. Do you have any such examples?

login is admin/123qwe

The site is at https://www.theappprostesting.com/Sapphire.

It has several issues with resources not being found. The biggest issues are the tenant cannot be changed (page not found), UI customization won't work and calls to api/services... cannot be found. I've worked for several days trying to resolve these issue with only minor progress. Because I can't change the default theme on the website, you cannot see the menu issue I submitted. I've asked for help with these other issues without getting any real assistance.

Showing 1 to 10 of 17 entries